Esempio n. 1
0
 public UserProfileCommentController(
     IUserProfileCommentService userProfileCommentService,
     IUserProfileService userProfileService,
     IUserService userService,
     UserManager <User> userManager)
 {
     this.userProfileCommentService = userProfileCommentService;
     this.userProfileService        = userProfileService;
     this.userService = userService;
     this.userManager = userManager;
 }
Esempio n. 2
0
 public UserProfileCommentController(IUserProfileCommentService userProfileCommentService)
 {
     this.userProfileCommentService = userProfileCommentService;
 }