示例#1
0
 [HttpGet("getSurveyResults")] // GET /api/survey/getSurveyResults
 public IActionResult GetSurveyResults()
 {
     return(Ok(QuestionResultMapper.CreateQuestionResultsDto(this.answerService.GetAnswersByQuestion())));
 }
示例#2
0
 [HttpGet("getSurveyResultsForDoctors")] // GET /api/survey/getSurveyResultsForDoctors
 public IActionResult GetSurveyResultsForDoctors()
 {
     return(Ok(QuestionResultMapper.CreateDoctorResultsDto(this.surveyService.GetSurveyResultsForAllDoctors(), App.Instance().DoctorService.GetAllEntities())));
 }
示例#3
0
 [HttpGet("getSurveyResults")] // GET /api/survey/getSurveyResults
 public IActionResult GetSurveyResults()
 {
     return(Ok(QuestionResultMapper.CreateQuestionResultsDto(App.Instance().AnswerService.GetAnswersByQuestion())));
 }