示例#1
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;
 }
示例#2
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;
 }