Example #1
0
 public SportRepository(SportsNewsDBContext dbContext) : base(dbContext)
 {
 }
Example #2
0
 public BaseRepository(SportsNewsDBContext dbContext)
 {
     this.dbContext = dbContext;
 }
 private UnitOfWork()
 {
     this.dbContext = new SportsNewsDBContext();
 }
Example #4
0
 public UnitOfWork()
 {
     this.dbContext = new SportsNewsDBContext();
 }
Example #5
0
 public AthleteRepository(SportsNewsDBContext dbContext) : base(dbContext)
 {
 }