Ejemplo n.º 1
0
 public VentasController(VentasService ventasService)
 {
     _ventasService = ventasService;
 }
Ejemplo n.º 2
0
 public ComandasController(DbContext context)
 {
     _db                     = context;
     _ventasService          = new VentasService(context);
     _periodoContableService = new PeriodoContableService(context);
 }