示例#1
0
 public GroupController(IUserService userService, IUserProfileUnitOfWork userProfileUnitOfWork, IStoryUnitOfWork storyUnitOfWork, IStoryService storyService)
 {
     this.userService           = userService;
     this.userProfileUnitOfWork = userProfileUnitOfWork;
     this.storyUnitOfWork       = storyUnitOfWork;
     this.storyService          = storyService;
 }
示例#2
0
 public UserProfileController(IUserService userService, IUserProfileUnitOfWork userProfileUOW, IStoryUnitOfWork storyUOW, IStoryService storyService)
 {
     this.userService    = userService;
     this.userProfileUOW = userProfileUOW;
     this.storyUOW       = storyUOW;
     this.storyService   = storyService;
 }
示例#3
0
 public AdminController(IUserService userService, IUserProfileUnitOfWork userProfileUnitOfWork, IStoryUnitOfWork storyUnitOfWork)
 {
     this.userService           = userService;
     this.userProfileUnitOfWork = userProfileUnitOfWork;
     this.storyUnitOfWork       = storyUnitOfWork;
 }