示例#1
0
 public async Task <IHttpActionResult> GetType(long id)
 {
     try
     {
         return(Ok((await _service.GetAppointmentType(id))));
     }
     catch (Exception)
     {
         throw;
     }
 }