Ejemplo n.º 1
0
 public MenteeController(IEmailMessageService emailMessageService, IMenteeService menteeService, IMentorService mentorService, IProgramStatusService programStatusService)
 {
     _emailMessageService  = emailMessageService;
     _menteeService        = menteeService;
     _mentorService        = mentorService;
     _programStatusService = programStatusService;
 }
Ejemplo n.º 2
0
 public HomeController(IUserLogService userLogService, IMentorService mentorService, IMenteeService menteeService, IProgramStatusService programStatusService, IUserService userService)
 {
     _menteeService        = menteeService;
     _programStatusService = programStatusService;
     _mentorService        = mentorService;
     _userLogService       = userLogService;
     _userService          = userService;
 }
Ejemplo n.º 3
0
 public MentorController(IMenteeSeniorityService menteeSeniorityService, IEmailMessageService emailMessageService, ITimeSlotService timeSlotService, ITopicService topicService, IMenteeService menteeService, IMentorService mentorService)
 {
     _menteeSeniorityService = menteeSeniorityService;
     _emailMessageService    = emailMessageService;
     _timeSlotService        = timeSlotService;
     _topicService           = topicService;
     _menteeService          = menteeService;
     _mentorService          = mentorService;
 }
Ejemplo n.º 4
0
 public MenteeController(IMenteeService service)
 {
     _mentee = service;
 }
Ejemplo n.º 5
0
 public MenteeController(ILogger <MenteeController> logger, IMenteeService service)
 {
     _logger  = logger;
     _service = service;
 }