Esempio n. 1
0
 public HomeController(IUsuarioService UserServ, IAuthService autentication, ISessionService session, IValidacionUsuario val, IInmuebleService InmServ, IImageService ImagenServ, IInmuebleTipoService inmuebleTipo, ICiudadService ciudadService)
 {
     this.UserServ      = UserServ;
     this.autentication = autentication;
     this.session       = session;
     this.val           = val;
     this.InmServ       = InmServ;
     this.ImagenServ    = ImagenServ;
     this.inmuebleTipo  = inmuebleTipo;
     this.ciudadService = ciudadService;
 }
Esempio n. 2
0
 public PublicacionController(IAuthService auth, IPlanService PlanServ, IInmuebleTipoService InmTipServ, ICiudadService CiudServ, ICloudinaryService Cloudinary, IInmuebleService inmServ, IImageService ImagenServ, IPublicacionService publicServ, IValidacionInmueble valInm)
 {
     this.auth       = auth;
     this.PlanServ   = PlanServ;
     this.InmTipServ = InmTipServ;
     this.CiudServ   = CiudServ;
     this.Cloudinary = Cloudinary;
     this.inmServ    = inmServ;
     this.ImagenServ = ImagenServ;
     this.publicServ = publicServ;
     this.valInm     = valInm;
 }
Esempio n. 3
0
 // GET: Inmueble
 public InmuebleController(IAuthService AuthServ, IInmuebleService InmServ, IImageService ImagenServ, IInmuebleTipoService InmTipoServ, ICiudadService CiudadServ, IUsuarioService UsuarioServ, IPublicacionService PublicServ, IPlanService PlanServ, IValidacionInmueble valInm)
 {
     this.AuthServ    = AuthServ;
     this.InmServ     = InmServ;
     this.ImagenServ  = ImagenServ;
     this.InmTipoServ = InmTipoServ;
     this.CiudadServ  = CiudadServ;
     this.UsuarioServ = UsuarioServ;
     this.PublicServ  = PublicServ;
     this.PlanServ    = PlanServ;
     this.valInm      = valInm;
 }