Ejemplo n.º 1
0
 public ComprasController(DbContext context)
 {
     _db                     = context;
     _comprasService         = new ComprasService(context);
     _periodoContableService = new PeriodoContableService(context);
     _cuentasServices        = new CuentasServices(context);
 }
Ejemplo n.º 2
0
 public PeriodoContableController(DbContext context)
 {
     _service         = new PeriodoContableService(context);
     _cuentasServices = new CuentasServices(context);
     _cierreService   = new CierreService(context);
     _db = context;
 }
Ejemplo n.º 3
0
 public InicioController(DbContext context)
 {
     _db = context;
     _periodoContableService = new PeriodoContableService(context);
     _cuentasService         = new CuentasServices(context);
 }
Ejemplo n.º 4
0
 public ComandasController(DbContext context)
 {
     _db                     = context;
     _ventasService          = new VentasService(context);
     _periodoContableService = new PeriodoContableService(context);
 }
Ejemplo n.º 5
0
 public ControlDeAsistenciaController()
 {
     _periodoContableService = new PeriodoContableService(_db);
     UserManager             = new UserManager <Usuario>(new UserStore <Usuario>(_db));
 }
Ejemplo n.º 6
0
 public SeleccionController(DbContext context)
 {
     _db = context;
     _periodoContableService = new PeriodoContableService(context);
 }
Ejemplo n.º 7
0
 public ConceptosDeGastosController(DbContext context)
 {
     _db = context;
     _periodoContableService = new PeriodoContableService(context);
 }
Ejemplo n.º 8
0
 public OtrosGastosController(DbContext context)
 {
     _db = context;
     _periodoContableService = new PeriodoContableService(context);
     _cuentasServices        = new CuentasServices(context);
 }
Ejemplo n.º 9
0
 public ResumenCierre(DbContext context)
 {
     _db = context;
     _cuentasServices        = new CuentasServices(context);
     _periodoContableService = new PeriodoContableService(context);
 }
Ejemplo n.º 10
0
 public DiaContableAttribute()
 {
     _db = new ErpContext();
     _periodoContableService = new PeriodoContableService(_db);
 }
Ejemplo n.º 11
0
 public AnotacionesController(DbContext context)
 {
     _db = context;
     _periodoContableService = new PeriodoContableService(context);
 }