public ExamAttemptController(
     IExamAttemptService examAttemptService,
     IUserService userService,
     IAnwserService anwserService,
     IMistakeService mistakeService,
     IMapper mapper)
 {
     _anwserService      = anwserService;
     _userService        = userService;
     _examAttemptService = examAttemptService;
     _mistakeService     = mistakeService;
     _mapper             = mapper;
 }
 public AnwserController(
     IAnwserService anwserService,
     IUserService userService,
     ITopicService topicService,
     IExamAttemptService examAttemptService,
     IMapper mapper)
 {
     _topicService       = topicService;
     _userService        = userService;
     _anwserService      = anwserService;
     _mapper             = mapper;
     _examAttemptService = examAttemptService;
 }
 public ExportController(
     IExamService examService,
     IExamCritereaService examCritereaService,
     IGeneralCritereaService generalCritereaService,
     IExamAttemptService examAttemptService,
     IStateService stateService,
     ITopicService topicService,
     IMapper mapper)
 {
     _examCritereaService    = examCritereaService;
     _examService            = examService;
     _generalCritereaService = generalCritereaService;
     _examAttemptService     = examAttemptService;
     _stateService           = stateService;
     _topicService           = topicService;
     _mapper = mapper;
 }