Example #1
0
 public PostController()
 {
     _postRepo     = new EfPostRepository();
     _categoryRepo = new EfCategoryRepository();
     _appUserRepo  = new EfAppUserRepository();
     _commentRepo  = new EfCommentRepository();
 }
Example #2
0
 public CategoryController()
 {
     _repo = new EfCategoryRepository();
 }
Example #3
0
 public NewsArticleController()
 {
     _newsRepo     = new EfNewsArticleRepository();
     _categoryRepo = new EfCategoryRepository();
     _appUserRepo  = new EfAppUserRepository();
 }