public EfCategoryRepository(BlogContext _context)
 {
     context = _context;
 }
Beispiel #2
0
 public EfBlogRepository(BlogContext _context)
 {
     context = _context;
 }
Beispiel #3
0
 public EfBlogRepository(BlogContext context)
 {
     _context = context;
 }
 public EfCategoryRepository(BlogContext context)
 {
     _context = context;
 }
Beispiel #5
0
 public EfBlogRepository(BlogContext blogContext)
 {
     _blogContext = blogContext;
 }