Exemplo n.º 1
0
 public RandomEnglishTaskController(
     IRandomEnglishTaskService randomEnglishTaskService,
     WebMapper englishTaskWebMapper)
 {
     _randomEnglishTaskService = randomEnglishTaskService;
     _mapper = englishTaskWebMapper.Mapper;
 }
Exemplo n.º 2
0
 public GenerateTaskController(
     ITaskGenerationService taskGenerationService,
     WebMapper webMapper)
 {
     _taskGenerationService = taskGenerationService;
     _mapper = webMapper.Mapper;
 }
 public GeneralStatisticController(
     IJwtInfoProvider jwtInfoProvider,
     IGeneralStatisticService generalStatisticService,
     WebMapper webMapper)
 {
     _jwtInfoProvider         = jwtInfoProvider;
     _generalStatisticService = generalStatisticService;
     _mapper = webMapper.Mapper;
 }
Exemplo n.º 4
0
 public EnglishMultimediaController(
     IEnglishMultimediaService englishMultimediaService,
     IJwtInfoProvider jwtInfoProvider,
     WebMapper webMapper)
 {
     _englishMultimediaService = englishMultimediaService;
     _jwtInfoProvider          = jwtInfoProvider;
     _mapper = webMapper.Mapper;
 }
Exemplo n.º 5
0
 public GrammarFileAnalyzedController(
     IGrammarFileAnalyzedService grammarFileAnalyzedService,
     IParsedSentService parsedSentService,
     WebMapper webMapper)
 {
     _grammarFileAnalyzedService = grammarFileAnalyzedService;
     _parsedSentService          = parsedSentService;
     _mapper = webMapper.Mapper;
 }
Exemplo n.º 6
0
 public CompletedEnglishTaskController(
     IJwtInfoProvider jwtInfoProvider,
     ICompletedEnglishTaskService completedEnglishTaskService,
     WebMapper webMapper)
 {
     _jwtInfoProvider             = jwtInfoProvider;
     _completedEnglishTaskService = completedEnglishTaskService;
     _mapper = webMapper.Mapper;
 }
 public EnglishTasksController(
     IEnglishTasksService englishTasksService,
     IJwtInfoProvider jwtInfoProvider,
     WebMapper webMapper)
 {
     _englishTasksService = englishTasksService;
     _jwtInfoProvider     = jwtInfoProvider;
     _mapper = webMapper.Mapper;
 }
Exemplo n.º 8
0
 public EnglishTaskController(
     IEnglishTaskService englishTaskService,
     IEnglishTaskCreateService englishTaskCreateService,
     WebMapper englishTaskWebMapper)
 {
     _englishTaskService       = englishTaskService;
     _englishTaskCreateService = englishTaskCreateService;
     _mapper = englishTaskWebMapper.Mapper;
 }
 public AudioTaskController(
     IParsedSentToAudioService parsedSentToAudioService,
     IAudioTaskService audioTaskService,
     WebMapper webMapper)
 {
     _parsedSentToAudioService = parsedSentToAudioService;
     _audioTaskService         = audioTaskService;
     _mapper = webMapper.Mapper;
 }
Exemplo n.º 10
0
 public override void Load()
 {
     Bind <ICategoryService>().To <CategoryService>();
     Bind <IProductService>().To <ProductService>();
     Bind <IOrderService>().To <OrderService>();
     Bind <IOrderProductService>().To <OrderProductService>();
     Bind <IUserService>().To <UserService>();
     Bind <IShoppingCartService>().To <ShoppingCartService>();
     Bind <ISortService>().To <SortingService>();
     Bind <IMapper>().ToConstant(WebMapper.Configure().CreateMapper());
 }
 public EnglishVideoFiltersController(IEnglishVideoFilterService filterService, WebMapper webMapper)
 {
     _filterService = filterService;
     _mapper        = webMapper.Mapper;
 }
 public EnglishAudioRandomController(IRandomAudioService randomAudioService, WebMapper webMapper)
 {
     _randomAudioService = randomAudioService;
     _mapper             = webMapper.Mapper;
 }
 public EnglishVideoRandomInfoController(IRandomVideoInfoService randomVideoInfoService, WebMapper webMapper)
 {
     _randomVideoInfoService = randomVideoInfoService;
     _mapper = webMapper.Mapper;
 }
 public EnglishTextRandomInfoController(IRandomTextInfoService randomTextInfoService, WebMapper webMapper)
 {
     _randomTextInfoService = randomTextInfoService;
     _mapper = webMapper.Mapper;
 }
 public EnglishTaskFilterOptionsController(IEnglishTaskFilterOptionsService filterOptionsService, WebMapper webMapper)
 {
     _filterOptionsService = filterOptionsService;
     _mapper = webMapper.Mapper;
 }
Exemplo n.º 16
0
 public EnglishAudioInfoController(IAudioService audioService, WebMapper webMapper)
 {
     _audioService = audioService;
     _mapper       = webMapper.Mapper;
 }
Exemplo n.º 17
0
 public EnglishTextInfoController(ITextService textService, WebMapper webMapper)
 {
     _textService = textService;
     _mapper      = webMapper.Mapper;
 }
 public EnglishVideoController(IVideoService videoService, WebMapper webMapper)
 {
     _videoService = videoService;
     _mapper       = webMapper.Mapper;
 }
 public TaskItemController(ITaskItemService taskItemService, WebMapper webMapper)
 {
     _taskItemService = taskItemService;
     _mapper          = webMapper.Mapper;
 }
 public InfoEnglishTaskController(IEnglishTaskService englishTaskService, WebMapper englishTaskWebMapper)
 {
     _englishTaskService = englishTaskService;
     _mapper             = englishTaskWebMapper.Mapper;
 }