public async Task <IActionResult> GetAllAsync() { return(Ok(await _treatmentService.GetAllAsync())); }
public async Task <IActionResult> GetAllAsync(int diseaseId) { return(Ok(await _treatmentservice.GetAllAsync(diseaseId))); }