public CommentingUserAccountController(IUniqueUsernameService uniqueUsernameService, IUniquePageService uniquePageService, ICommentInfoUiService commentInfoUiService, IStringResourceProvider stringResourceProvider)
 {
     _uniqueUsernameService = uniqueUsernameService;
     _uniquePageService = uniquePageService;
     _commentInfoUiService = commentInfoUiService;
     _stringResourceProvider = stringResourceProvider;
 }
Ejemplo n.º 2
0
 public CommentingUserAccountController(IUniqueUsernameService uniqueUsernameService,
                                        IUniquePageService uniquePageService, ICommentInfoUiService commentInfoUiService)
 {
     _uniqueUsernameService = uniqueUsernameService;
     _uniquePageService     = uniquePageService;
     _commentInfoUiService  = commentInfoUiService;
 }
Ejemplo n.º 3
0
 public CommentingUserAccountController(IUniqueUsernameService uniqueUsernameService, IUniquePageService uniquePageService, ICommentInfoUiService commentInfoUiService, IStringResourceProvider stringResourceProvider)
 {
     _uniqueUsernameService  = uniqueUsernameService;
     _uniquePageService      = uniquePageService;
     _commentInfoUiService   = commentInfoUiService;
     _stringResourceProvider = stringResourceProvider;
 }
Ejemplo n.º 4
0
 public CommentsInfoController(IUserProfileDataService userProfileDataService, IUniqueUsernameService uniqueUsernameService)
 {
     _userProfileDataService = userProfileDataService;
     _uniqueUsernameService  = uniqueUsernameService;
 }