Example #1
0
 public OwnerController(IOwnerService ownerService, UserManager <ApplicationUser> userManager,
                        IApartmentService apartmentService)
 {
     _ownerService     = ownerService;
     _userManager      = userManager;
     _apartmentService = apartmentService;
 }
Example #2
0
 public VoteController(IVoteService voteService, ITenantService tenantService,
                       IApartmentService apartmentService)
 {
     this._voteService      = voteService;
     this._tenantService    = tenantService;
     this._apartmentService = apartmentService;
 }
 public HomeController(IApartmentService apartmentService, IRatingService ratingService, ICityService cityService, ILogger <HomeController> log)
 {
     _apartmentService = apartmentService;
     _ratingService    = ratingService;
     _cityService      = cityService;
     _log = log;
 }
 public ApartmentController(IApartmentService apartmentService, IOwnerService ownerService,
                            UserManager <ApplicationUser> userManager, ILocationService locationService)
 {
     _apartmentService = apartmentService;
     _ownerService     = ownerService;
     _userManager      = userManager;
     _locationService  = locationService;
 }
 public BotCacheService(IRepository <BotCache, Guid> botCacheRepository,
                        IApartmentService apartmentService, IInfoService infoService, IEventService eventService)
 {
     _botCacheRepository = botCacheRepository;
     _apartmentService   = apartmentService;
     _infoService        = infoService;
     _eventService       = eventService;
 }
        public ApartmentController(IApartmentService apartmentService)
        {
            this.service = apartmentService;

            if (service == null)
            {
                throw new ArgumentNullException("ApartmentService");
            }
        }
Example #7
0
 public BotCacheController(IBotCacheService botCacheService, ILocationService locationService,
                           IApartmentService apartmentService, IEventService eventService, IInfoService infoService)
 {
     _botCacheService  = botCacheService;
     _locationService  = locationService;
     _apartmentService = apartmentService;
     _eventService     = eventService;
     _infoService      = infoService;
 }
 public ApartmеntsController(
     IApartmentService apartmentService,
     ICitiesService citiesService,
     IBuildingsService buildingService,
     UserManager <ApplicationUser> userManager)
 {
     this.apartmentService = apartmentService;
     this.citiesService    = citiesService;
     this.buildingService  = buildingService;
     this.userManager      = userManager;
 }
Example #9
0
 public ReportsController(
     IReportsService reportsService,
     IApartmentService apartmentService,
     IBuildingsService buildingService,
     ICalculationMonthlyFeesService calculationMonthlyFeesService,
     UserManager <ApplicationUser> userManager)
 {
     this.reportsService   = reportsService;
     this.apartmentService = apartmentService;
     this.buildingService  = buildingService;
     this.calculationMonthlyFeesService = calculationMonthlyFeesService;
     this.userManager = userManager;
 }
Example #10
0
 public UserService(UserManager <User> userManager,
                    RoleManager <IdentityRole <Guid> > roleManager,
                    IMapper serviceMapper,
                    IApartmentService apartmentService,
                    IUserRepository userRepository,
                    ISensorService sensorService,
                    IMailService mailService)
 {
     _userManager      = userManager;
     _roleManager      = roleManager;
     _serviceMapper    = serviceMapper;
     _apartmentService = apartmentService;
     _userRepository   = userRepository;
     _sensorService    = sensorService;
     _mailService      = mailService;
 }
Example #11
0
 public ApartmentController(IPagesNames pagesNames, IApartmentService apartmentService) :
     base(pagesNames.GetProperty())
 {
     _apartmentService = apartmentService;
 }
 public PropertyController(IApartmentService service)
 {
     this.service = service;
 }
Example #13
0
 public ApartmentController(IApartmentService apartmentService, IOwnersService ownersService, IMapper mapper)
 {
     _apartmentService = apartmentService;
     _ownersService    = ownersService;
     _mapper           = mapper;
 }
Example #14
0
 public HomeController(IRequestService reqService, IApartmentService apService, IBookingService bookService)
 {
     requestService   = reqService;
     apartmentService = apService;
     bookingService   = bookService;
 }
Example #15
0
 public ApartmentsController(IApartmentService apartmentService)
 {
     _customerService = apartmentService;
 }
Example #16
0
 public ApartmentController(IErrorService errorService, IApartmentService apartmentService) : base(errorService)
 {
     this._apartmentService = apartmentService;
 }
Example #17
0
 public ApartmentController(IOfficeApartmentService service, IApartmentService apartmentService)
 {
     this.service          = service;
     this.apartmentService = apartmentService;
 }
Example #18
0
 public BookingController(IApartmentService dataService, IBaseSingleService baseService)
 {
     _baseService = baseService;
     _dataService = dataService;
 }
 public ApartmentController(IApartmentService apartmentService, ICityService cityService, ILogger <ApartmentController> log)
 {
     _apartmentService = apartmentService;
     _cityService      = cityService;
     _log = log;
 }
 public ApartmentHandler(IApartmentService apartmentService)
 {
     _apartmentService = apartmentService;
 }
 public DetailsController(IApartmentService apartmentService, ILogger <DetailsController> log)
 {
     _apartmentService = apartmentService;
     _log = log;
 }
 public ApartmentController(IApplicationUnitOfWork unitOfWork, ILocationService locationService, IApartmentService apartmentService)
 {
     this.unitOfWork       = unitOfWork;
     this.locationService  = locationService;
     this.apartmentService = apartmentService;
 }
Example #23
0
 public VotesController(IMapper mapper, IVoteService voteService, IApartmentService apartmentService)
 {
     this._mapper           = mapper;
     this._voteService      = voteService;
     this._apartmentService = apartmentService;
 }
 public BookingController(IBookingService bookService, IApartmentService apService)
 {
     bookingService   = bookService;
     apartmentService = apService;
 }
 public ApartmentController(IApartmentService apartmentService)
 {
     this._apartmentService = apartmentService;
 }
Example #26
0
 public HostController(IHostService hostService, JwtService jwtService, IApartmentService apartmentService)
 {
     _hostService      = hostService;
     _jwtService       = jwtService;
     _apartmentService = apartmentService;
 }
 public ApartmentController(IBuildingService buildingService, IApartmentService apartmentService) : base(buildingService)
 {
     _buildingService  = buildingService;
     _apartmentService = apartmentService;
 }
Example #28
0
 public HomeController(IRequestService reqService, IApartmentService apService)
 {
     requestService   = reqService;
     apartmentService = apService;
 }
 public HomeController(IApartmentService service)
 {
     apartmentService = service;
 }
Example #30
0
 public ApartmentsController(IApartmentService apartmentService)
 {
     _apartmentService = apartmentService;
 }