public ApplicationUserProfilesController(
     ICroudSeekRepository croudSeekRepository,
     IMapper mapper)
 {
     _croudSeekRepository = croudSeekRepository ??
                            throw new ArgumentNullException(nameof(croudSeekRepository));
     _mapper = mapper ??
               throw new ArgumentNullException(nameof(mapper));
 }
Пример #2
0
 public QuestsController(ICroudSeekRepository croudSeekRepository, IMapper mapper)
 {
     _croudSeekRepository = croudSeekRepository;
     _mapper = mapper;
 }
Пример #3
0
 public AccountController(IAuthenticationService authenticationService, ICroudSeekRepository croudSeekRepository)
 {
     _croudSeekRepository   = croudSeekRepository;
     _authenticationService = authenticationService;
 }
Пример #4
0
 public UserWeightsController(ICroudSeekRepository croudSeekRepository, IMapper mapper)
 {
     _croudSeekRepository = croudSeekRepository;
     _mapper = mapper;
 }