コード例 #1
0
 public UserProfileController(IUserService userService, IUserProfileUnitOfWork userProfileUOW, IStoryUnitOfWork storyUOW, IStoryService storyService)
 {
     this.userService    = userService;
     this.userProfileUOW = userProfileUOW;
     this.storyUOW       = storyUOW;
     this.storyService   = storyService;
 }
コード例 #2
0
 public GroupController(IUserService userService, IUserProfileUnitOfWork userProfileUnitOfWork, IStoryUnitOfWork storyUnitOfWork, IStoryService storyService)
 {
     this.userService           = userService;
     this.userProfileUnitOfWork = userProfileUnitOfWork;
     this.storyUnitOfWork       = storyUnitOfWork;
     this.storyService          = storyService;
 }
コード例 #3
0
ファイル: AccountController.cs プロジェクト: radun2/Project
 public AccountController(ApplicationUserManager userManager, ApplicationSignInManager signInManager, IUserProfileUnitOfWork userProfileUnit)
 {
     this.userManager     = userManager;
     this.signInManager   = signInManager;
     this.userProfileUnit = userProfileUnit;
 }
コード例 #4
0
 public AdminController(IUserService userService, IUserProfileUnitOfWork userProfileUnitOfWork, IStoryUnitOfWork storyUnitOfWork)
 {
     this.userService           = userService;
     this.userProfileUnitOfWork = userProfileUnitOfWork;
     this.storyUnitOfWork       = storyUnitOfWork;
 }