public PostModel(
     ICategoryPostsService postsService,
     IAdminCommentsService commentsService,
     IAdminRepliesService repliesService,
     IUserProfileService userService,
     UserManager <User> userManager)
 {
     this.postsService    = postsService;
     this.commentsService = commentsService;
     this.repliesService  = repliesService;
     this.userService     = userService;
     this.userManager     = userManager;
 }
 public RepliesByApproval(IAdminRepliesService repliesService)
 {
     this.repliesService = repliesService;
 }
 public RepliesController(IAdminRepliesService repliesService)
 {
     this.repliesService = repliesService;
 }
Example #4
0
 public RepliesForTodayDate(IAdminRepliesService repliesService)
 {
     this.repliesService = repliesService;
 }