Example #1
0
 public PropertyTypeDetailsViewModel(IPropertyTypeService propertyTypeService, IFilePickerService filePickerService, ICommonServices commonServices, PropertyTypeListViewModel propertyTypeList, PropertyTypeViewModel propertyTypeViewModel) : base(commonServices)
 {
     PropertyTypeService   = propertyTypeService;
     FilePickerService     = filePickerService;
     PropertyTypeList      = propertyTypeList;
     PropertyTypeViewModel = propertyTypeViewModel;
 }
Example #2
0
 public HotelsController(IHotelService hotelService, IImageService imageService, IThumbnailService thumbnailService, IPropertyTypeService propertyTypeService)
 {
     this.hotelService        = hotelService;
     this.imageService        = imageService;
     this.thumbnailService    = thumbnailService;
     this.propertyTypeService = propertyTypeService;
 }
Example #3
0
 public HotelPropertyTypeService(ApplicationContext applicationContext, IPropertyTypeService propertyTypeService,
                                 IHotelService hotelService)
 {
     this.applicationContext  = applicationContext;
     this.propertyTypeService = propertyTypeService;
     this.hotelService        = hotelService;
 }
 public HotelService(ApplicationContext applicationContext, IPropertyTypeService propertyTypeService,
                     IImageService imageService, IMapper mapper)
 {
     this.applicationContext  = applicationContext;
     this.propertyTypeService = propertyTypeService;
     this.imageService        = imageService;
     this.mapper = mapper;
 }
Example #5
0
 public PropertyController(IPropertyService propertyService,
                           IPropertyTypeService propertyTypeService,
                           UserManager <ApplicationUser> userManager)
 {
     this.propertyService     = propertyService;
     this.propertyTypeService = propertyTypeService;
     this.UserManager         = userManager;
 }
 public PropertyController(IPropertyService propertyService,
                           IPropertyTypeService propertyTypeService,
                           UserManager <AppUser> userManager)
 {
     _propertyService     = propertyService;
     _propertyTypeService = propertyTypeService;
     _userManager         = userManager;
 }
 public PropertiesController(
     IPropertyService propertyService,
     IPropertyTypeService propertyTypeService,
     IAppUserService appUserService,
     IMapper mapper,
     IBuildingService buildingService)
 {
     this.propertyService     = propertyService;
     this.propertyTypeService = propertyTypeService;
     this.appUserService      = appUserService;
     this.mapper          = mapper;
     this.buildingService = buildingService;
 }
 public PropertyTypeCollection(IPropertyTypeService propertyTypeService, ILogService logService) : base(logService)
 {
     PropertyTypeService = propertyTypeService;
 }
Example #9
0
 public PropertyTypeController(IPropertyTypeService propertyTypeService)
 {
     this.propertyTypeService = propertyTypeService;
 }
Example #10
0
 public PropertyController(IPropertyService propertyService,
                           IPropertyTypeService propertyTypeService)
 {
     _propertyService     = propertyService;
     _propertyTypeService = propertyTypeService;
 }
 public PropertyTypesController(IPropertyTypeService propertyTypeService, IMapper mapper, IResponse response)
 {
     _mapper = mapper;
     _propertyTypeService = propertyTypeService;
     _response            = response;
 }
 public PropertyTypeController(IPropertyTypeService service, IMapper mapper)
 {
     this.service = service;
     this.mapper  = mapper;
 }
 public PropertyTypeListViewModel(IPropertyTypeService propertyTypeService, ICommonServices commonServices, PropertyTypeViewModel propertyTypeViewModel) : base(commonServices)
 {
     PropertyTypeService   = propertyTypeService;
     PropertyTypeViewModel = propertyTypeViewModel;
 }