Пример #1
0
 public LoginBL(IOutreachFeedbackDbContext context, IOptions <AppSettings> appSettings)
 {
     _context     = context;
     _appSettings = appSettings.Value;
 }
 public QuestionsRepository(IOutreachFeedbackDbContext context)
 {
     _dbContext = context;
 }
 public FeedbackRepository(IOutreachFeedbackDbContext context)
 {
     _dbContext = context;
 }
Пример #4
0
 public FileUploadBL(IFileContentMapper fileContentMapper, IOutreachFeedbackDbContext outreachFeedbackDbContext)
 {
     _fileContentMapper         = fileContentMapper;
     _outreachFeedbackDbContext = outreachFeedbackDbContext;
 }