public FriendController(ILayoutService layoutService, IClientFriendService friendService, IApplicationUserService applicationUserService ) : base(layoutService) { _friendService = friendService; _applicationUserService = applicationUserService; }
public YourAccountController(ILayoutService layoutService, IApplicationUserService applicationUserService, IClientFriendService friendService, IClientNotificationService notificationService) : base(layoutService) { _applicationUserService = applicationUserService; UserManager = new UserManager <ApplicationUser>(new ApplicationUserStore(new ApplicationDbContext())); _friendService = friendService; _notificationService = notificationService; }
public ProfileController(ILayoutService layoutService, IClientProfileService clientProfileService, IPostService postService, IPostTypeService postTypeService, IPostVoteDetailService postVoteDetailService, ICommentService commentOfPost, ICommentVoteDetailService commentVoteDetailService, IClientFriendService friendService ) : base(layoutService) { _clientProfileService = clientProfileService; _postService = postService; _postTypeService = postTypeService; _postVoteDetailService = postVoteDetailService; _commentOfPost = commentOfPost; _commentVoteDetailService = commentVoteDetailService; _friendService = friendService; }