// GET: api/AcctTxnDocument/5 public object Get(string id) { try { return(TxnDocMdl.GetTxnDoc(id)); } catch (Exception e) { return(e); } }
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 }); } }