public CommentAsyncRepository(SimpleBlogDbContext context) : base(context)
 {
 }
Beispiel #2
0
 public SimpleBlogDbContext Init()
 {
     return(_dbContext ?? (_dbContext = new SimpleBlogDbContext()));
 }
Beispiel #3
0
 public EfAsyncBaseRepository(SimpleBlogDbContext context)
 {
     this.context = context;
 }