예제 #1
0
 public EntradasVentasController(DependienteDbContext context)
 {
     _context = context;
 }
예제 #2
0
 public TrasladosVentasController(DependienteDbContext context)
 {
     _context = context;
 }
 public TrasladosRecibidosController(DependienteDbContext context)
 {
     _context = context;
 }
 public TurnosController(DependienteDbContext context)
 {
     _context           = context;
     _existenciaService = new ExistenciasService(context);
 }
 public ControlesExistenciasVentasController(DependienteDbContext context)
 {
     _context = context;
 }
예제 #6
0
 public PedidosController(DependienteDbContext context)
 {
     _context = context;
 }
예제 #7
0
 public SugerenciasPedidosController(DependienteDbContext context)
 {
     _context     = context;
     _sugerencias = new SugerenciasPedidos(context);
 }