示例#1
0
 public RealEstatesController(IRealEstatesService realEstatesService, IPhotosService photosService, IVisitorsService visitorsService,
                              IUsersService usersService, IUsersRolesService rolesService, IRealEstateCreateUtil util)
 {
     this.realEstatesService = realEstatesService;
     this.photosService      = photosService;
     this.visitorsService    = visitorsService;
     this.usersService       = usersService;
     this.rolesService       = rolesService;
     this.util = util;
 }
 public RealEstatesController(IRealEstatesService realEstatesService, IPhotosService photosService, IVisitorsService visitorsService,
     IUsersService usersService, IUsersRolesService rolesService, IRealEstateCreateUtil util)
 {
     this.realEstatesService = realEstatesService;
     this.photosService = photosService;
     this.visitorsService = visitorsService;
     this.usersService = usersService;
     this.rolesService = rolesService;
     this.util = util;
 }
 public RealEstatesOffersController(IRealEstatesService realEstatesService, IUsersService usersService)
 {
     this.realEstatesService = realEstatesService;
     this.usersService = usersService;
 }
示例#4
0
 public RealEstatesController(IRealEstatesService realEstates)
 {
     this.realEstates = realEstates;
 }
示例#5
0
 public AgencyRealEstatesController(IRealEstatesService realEstatesService, IPhotosService photosService, IVisitorsService visitorsService,
                                    IUsersService usersService, IUsersRolesService rolesService, IRealEstateCreateUtil util)
     : base(realEstatesService, photosService, visitorsService, usersService, rolesService, util)
 {
 }
 public HomeController(IRealEstatesService realEstateService)
 {
     this.realEstateService = realEstateService;
 }
 public RealEstatesController(IRealEstatesService estates)
 {
     this.estates = estates;
 }
 public VisitorsController(IUsersService usersService, IVisitorsService visitorsService, IRealEstatesService realEstatesService)
 {
     this.usersService = usersService;
     this.visitorsService = visitorsService;
     this.realEstatesService = realEstatesService;
 }
 public RealEstatesController(IRealEstatesService estateService)
 {
     this.estateService = estateService;
 }
 public AgencyRealEstatesController(IRealEstatesService realEstatesService, IPhotosService photosService, IVisitorsService visitorsService,
     IUsersService usersService, IUsersRolesService rolesService, IRealEstateCreateUtil util)
     : base(realEstatesService, photosService, visitorsService, usersService, rolesService, util)
 {
 }
示例#11
0
 public VisitorsController(IUsersService usersService, IVisitorsService visitorsService, IRealEstatesService realEstatesService)
 {
     this.usersService       = usersService;
     this.visitorsService    = visitorsService;
     this.realEstatesService = realEstatesService;
 }
示例#12
0
 public RealEstateAdminController(IRealEstatesService realEstatesService)
 {
     this.realEstatesService = realEstatesService;
 }
 public RealEstateAdminController(IRealEstatesService realEstatesService)
 {
     this.realEstatesService = realEstatesService;
 }
 public RealEstatesOffersController(IRealEstatesService realEstatesService, IUsersService usersService)
 {
     this.realEstatesService = realEstatesService;
     this.usersService       = usersService;
 }
 public RealEstatesController(IRealEstatesService realEstates)
 {
     this.realEstates = realEstates;
 }
示例#16
0
 public RealEstatesController(IRealEstatesService realEstatesService)
 {
     _realEstatesService = realEstatesService;
 }
示例#17
0
 public HomeController(IRealEstatesService realEstateService)
 {
     this.realEstateService = realEstateService;
 }