public PropertyImagesController(ApplicationDbContext context, IMapper mapper, IPropertyImageService propertyImageService, UserManager <ApplicationUser> userManager)
 {
     _context = context;
     _mapper  = mapper;
     _propertyImageService = propertyImageService;
     _userManager          = userManager;
 }
 public PropertyController(IPropertyService propertyService, IPropertyImageService propertyImageService, IPropertyDocumentService propertyDocumentService, IPortfolioService portfolioService, IMapper mapper, UserManager <ApplicationUser> userManager)
 {
     _propertyService         = propertyService;
     _propertyImageService    = propertyImageService;
     _propertyDocumentService = propertyDocumentService;
     _portfolioService        = portfolioService;
     _mapper      = mapper;
     _userManager = userManager;
 }
 public PhotosController(IPropertyImageService propertyImageService,
                         IPropertyService propertyService,
                         ICloudinaryService cloudinaryService,
                         IMapper mapper,
                         IResponse response)
 {
     _propertyImageService = propertyImageService;
     _propertyService      = propertyService;
     _cloudinaryService    = cloudinaryService;
     _mapper   = mapper;
     _response = response;
 }
 public AdminBrokerageController(IAgentService AgentService, ICustomerService CustomerService, IUserService UserService, IRoleService RoleService, IFormService FormService, IRoleDetailService RoleDetailService, IRoleService _RoleService, IUserRoleService UserroleService, IPropertyImageService PropertyImageService, IPropertyService PropertyService, ICompanyService CompanyService, IBrokerageServices BrokerageService, IBrokerageServiceServices BrokerageServiceServices, IBrokerageDetailServices BrokerageDetailServices)
     : base(CustomerService, UserService, RoleService, FormService, RoleDetailService, UserroleService)
 {
     this._CompanyService           = CompanyService;
     this._PropertyService          = PropertyService;
     this._PropertyImageService     = PropertyImageService;
     this._CustomerService          = CustomerService;
     this._AgentService             = AgentService;
     this._BrokerageService         = BrokerageService;
     this._BrokerageServiceServices = BrokerageServiceServices;
     this._BrokerageDetailServices  = BrokerageDetailServices;
 }
        public CustomerController(INotification Notification, IAgentService AgentService, IEventCustomerService EventCustomerService, IEventService EventService, ITipService TipService, IPropertyService PropertyService, IPropertyImageService PropertyImageService, IFeedBackService FeedBackService, ICompanyService CompanyService, ICountryService CountryService, IStateService StateService, ICityService CityService, IOfficeLocationService OfficeLocationService, ICustomerService CustomerService, IUserService UserService, IFormService FormService, IRoleDetailService RoleDetailService, IRoleService RoleService, IUserRoleService UserRoleService)
            : base(CustomerService, UserService, RoleService, FormService, RoleDetailService, UserRoleService)
        {
            this._Notification          = Notification;
            this._CustomerService       = CustomerService;
            this._UserService           = UserService;
            this._UserRoleService       = UserRoleService;
            this._OfficeLocationService = OfficeLocationService;
            this._CompanyService        = CompanyService;
            this._CountryService        = CountryService;
            this._StateService          = StateService;
            this._CityService           = CityService;

            this._AgentService         = AgentService;
            this._EventCustomerService = EventCustomerService;
            this._EventService         = EventService;
            this._CountryService       = CountryService;
            this._TipService           = TipService;
            this._PropertyService      = PropertyService;
            this._PropertyImageService = PropertyImageService;
        }
 public EventController(INotification Notification, ICustomerService CustomerService, IEventCustomerService EventCustomerService, IEventService EventService, IUserService UserService, IRoleService RoleService, IFormService FormService, IRoleDetailService RoleDetailService, IRoleService _RoleService, IUserRoleService UserroleService, IPropertyImageService PropertyImageService, IPropertyService PropertyService, ICompanyService CompanyService)
     : base(CustomerService, UserService, RoleService, FormService, RoleDetailService, UserroleService)
 {
     this._CompanyService       = CompanyService;
     this._PropertyService      = PropertyService;
     this._PropertyImageService = PropertyImageService;
     this._CustomerService      = CustomerService;
     this._EventService         = EventService;
     this._EventCustomerService = EventCustomerService; //Notification
     this._Notification         = Notification;         //
 }
        public AdminController(IAgentService AgentService, IEventCustomerService EventCustomerService, IEventService EventService, ITipService TipService, IPropertyService PropertyService, IPropertyImageService PropertyImageService, IFeedBackService FeedBackService, ICompanyService CompanyService, ICountryService CountryService, IStateService StateService, ICityService CityService, IOfficeLocationService OfficeLocationService, ICustomerService CustomerService, IUserService UserService, IFormService FormService, IRoleDetailService RoleDetailService, IRoleService RoleService, IUserRoleService UserRoleService, IViewsService ViewsService, IBannerService BannerService)
            : base(CustomerService, UserService, RoleService, FormService, RoleDetailService, UserRoleService)
        {
            this._CustomerService       = CustomerService;
            this._UserService           = UserService;
            this._UserRoleService       = UserRoleService;
            this._OfficeLocationService = OfficeLocationService;
            this._CompanyService        = CompanyService;
            this._CountryService        = CountryService;
            this._StateService          = StateService;
            this._CityService           = CityService;

            this._AgentService         = AgentService;
            this._EventCustomerService = EventCustomerService;
            this._EventService         = EventService;
            this._CountryService       = CountryService;
            this._TipService           = TipService;
            this._PropertyService      = PropertyService;
            this._PropertyImageService = PropertyImageService;
            this._ViewsService         = ViewsService;
            this._FeedBackService      = FeedBackService;
            this._BannerService        = BannerService;
            //
        }
Ejemplo n.º 8
0
 public AgentPropertyImageApiController(IPropertyService PropertyService, ICustomerService CustomerService, IPropertyImageService PropertyImageService)
 {
     this._PropertyService      = PropertyService;
     this._CustomerService      = CustomerService;
     this._PropertyImageService = PropertyImageService;
 }
Ejemplo n.º 9
0
 public PropertyApiController(ICustomerService CustomerService, IOpenHouseService OpenHouseService, IPropertyImageService PropertyImageService, IPropertyService PropertyService, IUserService UserService, IUserRoleService UserRoleService)
 {
     this._PropertyService      = PropertyService;
     this._UserService          = UserService;
     this._UserRoleService      = UserRoleService;
     this._PropertyImageService = PropertyImageService;
     this._OpenHouseService     = OpenHouseService;
     this._CustomerService      = CustomerService;
 }