Example #1
0
 public SearchController(
     IPostService <TblPosts> postService,
     IPostModelFactory postModelFactory,
     ISearchEngine searchEngine)
 {
     _postService      = postService;
     _postModelFactory = postModelFactory;
     _searchEngine     = searchEngine;
 }
Example #2
0
 public BlogController(
     IBlogPostService blogPostService,
     IPostModelFactory postModelFactory,
     IPostCategoriesService categoriesService)
 {
     _blogPostService   = blogPostService;
     _postModelFactory  = postModelFactory;
     _categoriesService = categoriesService;
 }