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