コード例 #1
0
 // GET: api/AcctTxnDocument/5
 public object Get(string id)
 {
     try
     {
         return(TxnDocMdl.GetTxnDoc(id));
     }
     catch (Exception e)
     {
         return(e);
     }
 }
コード例 #2
0
 public object Check(string code)
 {
     try
     {
         var result = TxnDocMdl.GetTxnDoc(code);
         return(new { state = true, name = result.ATD_NAME });
     }
     catch (Exception)
     {
         return(new { state = false });
     }
 }