Exemplo n.º 1
0
 public CommentRepository(WebPortalContext db)
 {
     this.db    = db;
     this.dbSet = db.Set <Comment>();
 }
Exemplo n.º 2
0
 public GenreRepository(WebPortalContext db)
 {
     this.db    = db;
     this.dbSet = db.Set <Genre>();
 }
 public UserRepository(WebPortalContext db)
 {
     this.db    = db;
     this.dbSet = db.Set <User>();
 }
Exemplo n.º 4
0
 public MusicRepository(WebPortalContext db)
 {
     this.db    = db;
     this.dbSet = db.Set <Music>();
 }
 public Singer_GroupRepository(WebPortalContext db)
 {
     this.db    = db;
     this.dbSet = db.Set <Singer_Group>();
 }