Exemple #1
0
 public UsersController(EarthlyRemediesContext db, IUserService userService)
 {
     _db          = db;
     _userService = userService;
 }
 public RemediesController(EarthlyRemediesContext db)
 {
     _db = db;
 }
Exemple #3
0
 public UserService(IOptions <AppSettings> appSettings, EarthlyRemediesContext db)
 {
     _appSettings = appSettings.Value;
     _users       = db;
 }