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