public FOHCAFRepository(FOHCAFDbContext context, IConfiguration configuration) { _context = context; _configuration = configuration; }
public PhotoRepository(FOHCAFDbContext context) { _context = context; }
public UserRepository(FOHCAFDbContext context, IOptions <AppSettings> appSettings) { _context = context; _appSettings = appSettings.Value; }