public IngresoService(IIngresoRepository ingresoRepository, IEspacioRepository espacioRepository, ApplicationDbContext context)
 {
     this.ingresorepository = ingresoRepository;
     this.espacioRepository = espacioRepository;
     this.context           = context;
 }
Пример #2
0
 public IngresoService(IIngresoRepository ingresoRepository)
 {
     this.ingresorepository = ingresoRepository;
 }
Пример #3
0
 public IngresoService()
 {
     IRep = new IngresoRepository();
 }