public SellerService(SalesWebMVCContext context)
 {
     _context = context;
 }
Esempio n. 2
0
 public SalesRecordService(SalesWebMVCContext context)
 {
     _context = context;
 }
 public DepartmentsController(SalesWebMVCContext context)
 {
     _context = context;
 }
 public DepartmentService(SalesWebMVCContext context)
 {
     _context = context;
 }
Esempio n. 5
0
 public VendedoresService(SalesWebMVCContext context)
 {
     _context = context;
 }
Esempio n. 6
0
 //O readonly faz com que a dependencia não possa ser alterado este elemento
 public DepartamantsServices(SalesWebMVCContext context)
 {
     _context = context;
 }
Esempio n. 7
0
 public RegistroDeVendaService(SalesWebMVCContext context)
 {
     _context = context;
 }