public ProdutosController(ControleVendasContext context)
 {
     _context = context;
 }
 public DepartmentsController(ControleVendasContext context)
 {
     _context = context;
 }
 public ClientesController(ControleVendasContext context)
 {
     _context = context;
 }
Example #4
0
 public SellerService(ControleVendasContext context)
 {
     _context = context;
 }
 public DepartmentService(ControleVendasContext context)
 {
     _context = context;
 }
 public PedidosController(ControleVendasContext context)
 {
     _context = context;
 }
Example #7
0
 public SalesRecordService(ControleVendasContext context)
 {
     _context = context;
 }