コード例 #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())));
 }