Exemplo n.º 1
0
 public UserDeviceInformationsController(IMapper mapper, IUserDeviceInformationRepository repository, IUnitOfWork unitOfWork, UserManager <ApplicationUser> userManager)
 {
     _mapper      = mapper;
     _repository  = repository;
     _unitOfWork  = unitOfWork;
     _userManager = userManager;
 }
Exemplo n.º 2
0
 public ServiceRequestsController(IMapper mapper, IServiceRequestRepository repository, IUnitOfWork unitOfWork, UserManager <ApplicationUser> userManager, IServiceRepository serviceRepository, IServiceProviderRepository serviceProviderRepository
                                  , IServiceReviewRepository serviceReviewRepository, IClientReviewRepository clientReviewRepository, IUserDeviceInformationRepository userDeviceInfoRepository,
                                  IFireBaseServiceClient fireBaseServiceClient)
 {
     _mapper                    = mapper;
     _repository                = repository;
     _unitOfWork                = unitOfWork;
     _userManager               = userManager;
     _serviceRepository         = serviceRepository;
     _serviceProviderRepository = serviceProviderRepository;
     _serviceReviewRepository   = serviceReviewRepository;
     _clientReviewRepository    = clientReviewRepository;
     _userDeviceInfoRepository  = userDeviceInfoRepository;
     _fireBaseServiceClient     = fireBaseServiceClient;
 }