public IEnumerable <Therapy> GetAll() { return(_therapyService.GetAll()); }
public IHttpActionResult GetAll() { var dataDto = Mapper.Map <List <Therapy>, List <TherapyGetAllDto> >(_therapyService.GetAll()); return(Ok(dataDto)); }