Example #1
0
 public FotoController(IConfiguration configuration, IHostingEnvironment environment, IRepositorioFoto rf, IRepositorioInmueble ri)
 {
     this.configuration = configuration;
     this.environment   = environment;
     this.rf            = rf;
     this.ri            = ri;
 }
Example #2
0
 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;
 }