Skip to content

Instantly share code, notes, and snippets.

@carloscds
Created February 28, 2020 01:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carloscds/d224f094c8470ce181b87a291b967a5d to your computer and use it in GitHub Desktop.
Save carloscds/d224f094c8470ce181b87a291b967a5d to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace InjecaoDependenciaDiretaEF.Models
{
public class Cliente
{
public int Id { get; set; }
public string Nome { get; set; }
public decimal LimiteCredito { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment