Exemplo n.º 1
0
 public UserProfileController(IUserService userService, IUserProfileUnitOfWork userProfileUOW, IStoryUnitOfWork storyUOW, IStoryService storyService)
 {
     this.userService    = userService;
     this.userProfileUOW = userProfileUOW;
     this.storyUOW       = storyUOW;
     this.storyService   = storyService;
 }
Exemplo n.º 2
0
 public GroupController(IUserService userService, IUserProfileUnitOfWork userProfileUnitOfWork, IStoryUnitOfWork storyUnitOfWork, IStoryService storyService)
 {
     this.userService           = userService;
     this.userProfileUnitOfWork = userProfileUnitOfWork;
     this.storyUnitOfWork       = storyUnitOfWork;
     this.storyService          = storyService;
 }
Exemplo n.º 3
0
 public AccountController(ApplicationUserManager userManager, ApplicationSignInManager signInManager, IUserProfileUnitOfWork userProfileUnit)
 {
     this.userManager     = userManager;
     this.signInManager   = signInManager;
     this.userProfileUnit = userProfileUnit;
 }
Exemplo n.º 4
0
 public AdminController(IUserService userService, IUserProfileUnitOfWork userProfileUnitOfWork, IStoryUnitOfWork storyUnitOfWork)
 {
     this.userService           = userService;
     this.userProfileUnitOfWork = userProfileUnitOfWork;
     this.storyUnitOfWork       = storyUnitOfWork;
 }