コード例 #1
0
 public CommentRepository(WebPortalContext db)
 {
     this.db    = db;
     this.dbSet = db.Set <Comment>();
 }
コード例 #2
0
 public GenreRepository(WebPortalContext db)
 {
     this.db    = db;
     this.dbSet = db.Set <Genre>();
 }
コード例 #3
0
 public UserRepository(WebPortalContext db)
 {
     this.db    = db;
     this.dbSet = db.Set <User>();
 }
コード例 #4
0
 public MusicRepository(WebPortalContext db)
 {
     this.db    = db;
     this.dbSet = db.Set <Music>();
 }
コード例 #5
0
 public Singer_GroupRepository(WebPortalContext db)
 {
     this.db    = db;
     this.dbSet = db.Set <Singer_Group>();
 }