public PeopleNearByService(AppDbContext appDbContext, IMapper mapper, IOptions <AppSettings> appSettings, IUserIPAddress userIPAddress)
 {
     _appDbContext  = appDbContext;
     _mapper        = mapper;
     _appSettings   = appSettings.Value;
     _userIPAddress = userIPAddress;
 }
Exemple #2
0
 public ReminderService(IEmailService emailService, AppDbContext appDbContext, IPushNotificationService pushNotificationService, IMapper mapper, IUserIPAddress userIPAddress)
 {
     _emailService            = emailService;
     _appDbContext            = appDbContext;
     _pushNotificationService = pushNotificationService;
     _mapper        = mapper;
     _userIPAddress = userIPAddress;
 }
Exemple #3
0
 public UserRecommendationService(MongoDbContext mongoDbContext, AppDbContext appDbContext, IMapper mapper, IPushNotificationService pushNotificationService, IUserIPAddress userIPAddress)
 {
     _appDbContext            = appDbContext;
     _mapper                  = mapper;
     _pushNotificationService = pushNotificationService;
     _mongoDbContext          = mongoDbContext;
     _userIPAddress           = userIPAddress;
 }
 public ReportProblemService(AppDbContext appDbContext, IMapper mapper, IEmailService emailService, IEncryptionManager encryption, FileDbContext fileDbContext, IUserIPAddress userIPAddress)
 {
     _appDbContext  = appDbContext;
     _mapper        = mapper;
     _emailService  = emailService;
     _fileDbContext = fileDbContext;
     _userIPAddress = userIPAddress;
 }
Exemple #5
0
 public EmailService(AppDbContext appDbContext, IOptions <AppSettings> settings, Random random, IEncryptionManager encryption, IUserIPAddress userIPAddress)
 {
     _appDbContext  = appDbContext;
     _random        = random;
     _appSettings   = settings.Value;
     _encryptor     = encryption;
     _userIPAddress = userIPAddress;
 }
 public RecommendLeaderService(AppDbContext appDbContext, IOptions <MinIoConfig> minIoConfig, IMapper mapper, IEmailService emailService, IEncryptionManager encryption, IUserIPAddress userIPAddress)
 {
     _appDbContext  = appDbContext;
     _minIoConfig   = minIoConfig.Value;
     _mapper        = mapper;
     _emailService  = emailService;
     _encryptor     = encryption;
     _userIPAddress = userIPAddress;
 }
Exemple #7
0
 public ActivityAndChallengesService(AppDbContext appDbContext, IMapper mapper, FileDbContext fileDbContext, IApplicationProgressStatusService applicationProgressService, MongoDbContext mongoDbcontext, IOptions <MinIoConfig> minIoConfig, IUserIPAddress userIPAddress)
 {
     _appDbContext  = appDbContext;
     _mapper        = mapper;
     _fileDbContext = fileDbContext;
     _applicationProgressService = applicationProgressService;
     _mongoDbcontext             = mongoDbcontext;
     _minIoConfig   = minIoConfig.Value;
     _userIPAddress = userIPAddress;
 }
 public FileService(IMapper mapper, FileDbContext fileDbContext, AppDbContext dbContext, IEncryptionManager encryption, IProfilePercentageCalculationService profilePercentageCalculation, MongoDbContext mongoDbContext, IUserIPAddress userIPAddress)
 {
     _mapper        = mapper;
     _fileDbContext = fileDbContext;
     _appDbContext  = dbContext;
     _encryption    = encryption;
     _profilePercentageCalculation = profilePercentageCalculation;
     _mongoDbContext = mongoDbContext;
     _userIPAddress  = userIPAddress;
 }
 public ProgramService(AppDbContext appDbContext, IMapper mapper, FileDbContext fileDbContext, IApplicationProgressStatusService applicationProgressService, MongoDbContext mongoDbcontext, IEmailService emailService, IOptions <MinIoConfig> minIoConfig, IUserIPAddress userIPAddress)
 {
     _appDbContext  = appDbContext;
     _mapper        = mapper;
     _fileDbContext = fileDbContext;
     _applicationProgressService = applicationProgressService;
     _mongoDbcontext             = mongoDbcontext;
     _emailService  = emailService;
     _minIoConfig   = minIoConfig.Value;
     _userIPAddress = userIPAddress;
 }
 public AccountService(AppDbContext appDbContext, IOptions <AppSettings> settings, IHttpContextAccessor httpContextAccessor, IOptions <EIDValidation> eidSettings, IMapper mapper, RandomStringGeneratorService randomStringGenerator, PasswordHashing hashing, IProfilePercentageCalculationService percentageCalculationService, IEmailService emailService, IUserIPAddress userIPAddress)
 {
     _appDbContext                 = appDbContext;
     _mapper                       = mapper;
     _randomStringGenerator        = randomStringGenerator;
     _hashing                      = hashing;
     _percentageCalculationService = percentageCalculationService;
     _emailService                 = emailService;
     _settings                     = settings.Value;
     _eidSettings                  = eidSettings.Value;
     _httpContextAccessor          = httpContextAccessor;
     _userIPAddress                = userIPAddress;
 }
Exemple #11
0
 public ApplicationProgressStatusService(AppDbContext appDbContext, IMapper mapper, IUserIPAddress userIPAddress)
 {
     _appDbContext  = appDbContext;
     _mapper        = mapper;
     _userIPAddress = userIPAddress;
 }