Exemple #1
0
 public VideoRepository(VLSDbContext db)
 {
     this.db = db;
 }
 public RecordRepository(VLSDbContext db)
 {
     this.db = db;
 }
 public UserRepository(VLSDbContext db, IOptions <AppSettings> appSettings)
 {
     this.db          = db;
     this.appSettings = appSettings.Value;
 }