コード例 #1
0
 public ActionResult <List <IntakeFormModel> > GetByPhysician(int physicianId)
 {
     try
     {
         return(_intakeBusiness.GetByPhysician(physicianId));
     }
     catch (Exception ex)
     {
         _logging.Log(LogSeverity.Error, ex.ToString());
         throw;
     }
 }