public DataEncuestaFactory(ILugarRepository lugarRepository, ICodigoRepository codigoRepository, IPersonaRepository personaRepository, IEspacioRepository espacioRepository) { _lugarRepository = lugarRepository; _codigoRepository = codigoRepository; _personaRepository = personaRepository; _espacioRepository = espacioRepository; }
public EspacioBusiness(IEspacioRepository espacioRepository, ICodigoRepository codigoRepository) { _espacioRepository = espacioRepository; _codigoRepository = codigoRepository; }
public ParkingService(IParkingRepository parkingRepository, IEspacioRepository espacioRepository) { this.parkingRepository = parkingRepository; this.espacioRepository = espacioRepository; }
public IngresoService(IIngresoRepository ingresoRepository, IEspacioRepository espacioRepository, ApplicationDbContext context) { this.ingresorepository = ingresoRepository; this.espacioRepository = espacioRepository; this.context = context; }
public EspacioService(IEspacioRepository espacioRepository) { this.espacioRepository = espacioRepository; }
public LugarBusiness(ILugarRepository lugarRepository, IEspacioRepository espacioRepository, ICodigoRepository codigoRepository) { _lugarRepository = lugarRepository; _espacioRepository = espacioRepository; _codigoRepository = codigoRepository; }
public ComprobanteService(IComprobanteRepository comprobanteRepository, ApplicationDbContext context, IEspacioRepository espacioRepository) { this.comprobanteRepository = comprobanteRepository; this.context = context; this.espacioRepository = espacioRepository; }