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();
 }