public ScheduleProvider(ICespRepository cespRepository, IMapper mapper, ICespResourceProvider cespResourceProvider) { _cespRepository = cespRepository; _mapper = mapper; _cespResourceProvider = cespResourceProvider; }
public SpeakingClubController( ISpeakingClubManager speakingClubManager, IFileManager fileManager, ICespRepository cespRepository, IMapper mapper, IOptions <Credentials> credentials) { _speakingClubManager = speakingClubManager; _fileManager = fileManager; _cespRepository = cespRepository; _mapper = mapper; _credentials = credentials.Value; }
public TeacherController( ITeacherManager teacherManager, IMapper mapper, IOptions <Credentials> credentials, IFileManager fileManager, ICespRepository cespRepository) { _teacherManager = teacherManager; _mapper = mapper; _credentials = credentials.Value; _fileManager = fileManager; _cespRepository = cespRepository; }
public FeedbackProvider(ICespRepository cespRepository, IMapper mapper) { _cespRepository = cespRepository; _mapper = mapper; }
public FileInfoProvider(ICespRepository cespRepository) { _cespRepository = cespRepository; }
public SpeakingClubProvider(ICespRepository cespRepository, IMapper mapper) { _cespRepository = cespRepository; _mapper = mapper; }
public TeacherProvider(ICespRepository cespRepository, IMapper mapper) { _cespRepository = cespRepository; _mapper = mapper; }
public CourseProvider(ICespRepository cespRepository, IMapper mapper) { _cespRepository = cespRepository; _mapper = mapper; }
public EventProvider(ICespRepository cespRepository, IMapper mapper) { _cespRepository = cespRepository; _mapper = mapper; }