Exemplo n.º 1
0
 public LocationInfoService(
     IMapper mapper,
     IServiceLocationRepository serviceLocationRepository)
 {
     _mapper = mapper;
     _serviceLocationRepository = serviceLocationRepository;
 }
Exemplo n.º 2
0
 public SearchPageService(IServiceLocationRepository locationRepository,
                          IServiceLocationOperationRepository locationOperationRepository,
                          IServiceOperationRepository operationRepository)
 {
     _locationRepository          = locationRepository;
     _locationOperationRepository = locationOperationRepository;
     _operationRepository         = operationRepository;
 }
 public ServicesClientService(
     IMapper mapper,
     IServiceLocationRepository locationRepository,
     IUserRepository userRepository)
 {
     _mapper             = mapper;
     _locationRepository = locationRepository;
     _userRepository     = userRepository;
 }
Exemplo n.º 4
0
 public MapController(IMapper mapper, IServiceRepository repository,
                      IServiceLocationRepository locationRepository, IServiceReviewRepository serviceReviewRepository,
                      IServiceProviderRepository serviceProviderRepository,
                      IDistressedUsersRepository distressedUsersRepository,
                      UserManager <ApplicationUser> userManager)
 {
     _mapper                    = mapper;
     _repository                = repository;
     _locationRepository        = locationRepository;
     _serviceReviewRepository   = serviceReviewRepository;
     _distressedUsersRepository = distressedUsersRepository;
     _userManager               = userManager;
 }
Exemplo n.º 5
0
 public ServiceLocationsController(IMapper mapper, IServiceLocationRepository repository, IUnitOfWork unitOfWork)
 {
     _mapper     = mapper;
     _repository = repository;
     _uniOfWork  = unitOfWork;
 }