Exemplo n.º 1
0
 public HomeController(PostListService postListService)
 {
     _postListService  = postListService;
     ViewData["Title"] = "Animal Blog";
 }
Exemplo n.º 2
0
 public PostController(PostListService postListService, CategoryServices categoryServices)
 {
     _categoryServices = categoryServices;
     _postListService  = postListService;
 }