Exemplo n.º 1
0
 public HomeController(IUsersService usersService, IPostsService postsService, IVotesService votesService, IVotesForCommentsService votesForCommentsService)
 {
     this.usersService            = usersService;
     this.postsService            = postsService;
     this.votesService            = votesService;
     this.votesForCommentsService = votesForCommentsService;
 }
Exemplo n.º 2
0
 public UsersController(IUsersService usersService, IPostsService postsService, IVotesService votesService, IVotesForCommentsService votesForCommentsService, UserManager <ApplicationUser> userManager)
 {
     this.usersService            = usersService;
     this.postsService            = postsService;
     this.votesService            = votesService;
     this.votesForCommentsService = votesForCommentsService;
     this.userManager             = userManager;
 }
Exemplo n.º 3
0
 public AccountController(UserManager <ApplicationUser> userManager, SignInManager <ApplicationUser> signInManager, IVotesService votesService, IVotesForCommentsService votesForCommentsService, IUsersService usersService)
 {
     this.userManager             = userManager;
     this.votesService            = votesService;
     this.votesForCommentsService = votesForCommentsService;
     this.usersService            = usersService;
     this.signInManager           = signInManager;
 }
 public VotesForCommentsController(IVotesForCommentsService votesForCommentsService, UserManager <ApplicationUser> userManager)
 {
     this.votesForCommentsService = votesForCommentsService;
     this.userManager             = userManager;
 }