public HomeController(INewFeedService newFeedService, IPostInteractService postInteractService)
 {
     this.newFeedService      = newFeedService;
     this.postInteractService = postInteractService;
 }
 public PostInteractController(IPostInteractService postInteractService)
 {
     this.postInteractService = postInteractService;
 }