public ContratoAlquilerController(IRepositorioContratoAlquiler rca, IRepositorioInmueble rinm, IRepositorio <Inquilino> rinq, IRepositorioPago rp, IConfiguration configuration) { this.rca = rca; this.rinm = rinm; this.rinq = rinq; this.rp = rp; this.configuration = configuration; }
public InmueblesController(IConfiguration configuration, IHostingEnvironment environment, IRepositorioInmueble ri, IRepositorioPropietario rp, IRepositorioContratoAlquiler ca, IRepositorioFoto rf) { this.configuration = configuration; this.environment = environment; this.ri = ri; this.rp = rp; this.rca = ca; this.rf = rf; }