예제 #1
0
 public int PostNSStop([FromBody] NSStop value)
 {
     try
     {
         int res = client.StopNS(value.num);
         return(res);
     }
     catch (Exception e)
     {
         String.Format("Ошибка выполнения метода API:PostNSStop(value={0})", value).SaveError(e);
         return(-1);
     }
 }