public DataSet GetAccount(String customerid) { try { AccountDA cda = new AccountDA(); return cda.GetAccount(customerid); } catch (Exception ex) { } return null; }
public void InsertAccount(String appid, String customerid) { try { AccountDA cda = new AccountDA(); cda.InsertAccount(appid,customerid); } catch (Exception ex) { } }