public DepartmentService(ProjetoMVCContext context)
 {
     _context = context;
 }
Exemplo n.º 2
0
 public SellerService(ProjetoMVCContext context)
 {
     _context = context;
 }
Exemplo n.º 3
0
 public Repository(ProjetoMVCContext db)
 {
     Db    = db;
     DbSet = db.Set <TEntity>();
 }
Exemplo n.º 4
0
 public DepartmentsController(ProjetoMVCContext context)
 {
     _context = context;
 }
Exemplo n.º 5
0
 public ClienteRepository(ProjetoMVCContext context) : base(context)
 {
 }