Example #1
0
 public BlogRepository(AmazingContext dbContext) : base(dbContext)
 {
 }
Example #2
0
 public ContentRepository(AmazingContext dbContext) : base(dbContext)
 {
 }
Example #3
0
 public UserRepository(AmazingContext dbContext) : base(dbContext)
 {
 }
Example #4
0
 protected BaseRepository(AmazingContext dbContext)
 {
     this.dbContext = dbContext;
 }