コード例 #1
0
 [HttpGet("list")] // Returns of all available records
 public ActionResult <string> GetListOfRecords()
 {
     try
     {
         return(Ok(gFilesHelper.GetAllRecordsList()));
     } catch (Exception ex)
     {
         return(NotFound(ex.Message));
     }
 }