Example #1
0
 public SalesRecordService(SalesWebContext context)
 {
     _context = context;
 }
Example #2
0
 public SellerService(SalesWebContext context)
 {
     _context = context;
 }
 public DepartmentsController(SalesWebContext context)
 {
     _context = context;
 }
 public DepartmentService(SalesWebContext context)
 {
     _context = context;
 }
Example #5
0
 public SellerService(SalesWebContext context) : base(context)
 {
 }
 public VendedorService(SalesWebContext context)
 {
     _context = context;
 }
Example #7
0
 public DepartmentService(SalesWebContext context) : base(context)
 {
 }
Example #8
0
 public RegistroVendasService(SalesWebContext context)
 {
     _context = context;
 }