Example #1
0
 public HomeController(ISiteBusiness siteBusiness, IFeedItemBusiness feedItemBusiness, IFeedBusiness feedBusiness, IPostBiz postBiz,
                       IContactBusiness contactBusiness, IUserBusiness userBusiness, ICommentBiz commentBiz)
 {
     _siteBusiness     = siteBusiness;
     _feedItemBusiness = feedItemBusiness;
     _feedBusiness     = feedBusiness;
     _postBiz          = postBiz;
     _contactBusiness  = contactBusiness;
     _userBusiness     = userBusiness;
     _commentBiz       = commentBiz;
 }
Example #2
0
 public PostController(IPostBiz postBiz, ICommentBiz commentBiz)
 {
     _postBiz    = postBiz;
     _commentBiz = commentBiz;
 }
Example #3
0
 public CommentController(ICommentBiz commentBiz)
 {
     _commentBiz = commentBiz;
 }