Exemplo n.º 1
0
 public UsersController(
     IUserService userService,
     IStudentsInCourseService studentsInCourseService,
     IMapper mapper,
     IOptions <AppSettings> appSettings)
 {
     _userService = userService;
     _mapper      = mapper;
     _appSettings = appSettings.Value;
     this.studentsInCourseService = studentsInCourseService;
 }
Exemplo n.º 2
0
 public StudentsInCourseController(IStudentsInCourseService studentsInCourseService)
 {
     this.studentsInCourseService = studentsInCourseService;
 }