public BaseRepository(SimpleBlogAppV2DbContext context)
 {
     this.context = context;
 }
Esempio n. 2
0
 public EfUnitOfWork(SimpleBlogAppV2DbContext context)
     : base(context)
 {
 }
 public EfPostRepository(SimpleBlogAppV2DbContext context)
     : base(context)
 {
 }
 public EfCategoryRepository(SimpleBlogAppV2DbContext context)
     : base(context)
 {
 }