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