public DashboardController(IRecruitmentService recruitmentService, IUserService userService, IGatherService gatherService)
 {
     this.recruitmentService = recruitmentService;
     this.userService        = userService;
     this.gatherService      = gatherService;
 }
 public HomeController(IGatherService gatherService, IRecruitmentService recruitmentService, IPitchService pitchService)
 {
     this.gatherService      = gatherService;
     this.recruitmentService = recruitmentService;
     this.pitchService       = pitchService;
 }
Exemple #3
0
 public GathersController(IGatherService gatherService, UserManager <User> userManager, IMapper mapper)
 {
     this.gatherService = gatherService;
     this.userManager   = userManager;
     this.mapper        = mapper;
 }