Beispiel #1
0
 public IActionResult GetHouseAddress(int id = 0)
 {
     try
     {
         return(Ok(fp.GetHouseAddress(id)));
     }
     catch (Exception ex)
     {
         Exceptions(ex);
         return(StatusCode(500));
     }
 }