Esempio n. 1
0
 protected BaseController(ApplyDbContext db)
 {
     this.Db = db;
 }
Esempio n. 2
0
 public PostsController(ApplyDbContext db, IOptions <WebApiSettingsForApplyProcess> webApiSettingsForApplyProcess, IMemoryCache memCache) : base(db)
 {
     _webApiSettings = webApiSettingsForApplyProcess.Value;
     _cache          = memCache;
 }