コード例 #1
0
 public async Task <IActionResult> GetAllAsync()
 {
     return(Ok(await _treatmentService.GetAllAsync()));
 }
コード例 #2
0
 public async Task <IActionResult> GetAllAsync(int diseaseId)
 {
     return(Ok(await _treatmentservice.GetAllAsync(diseaseId)));
 }