Пример #1
0
        public DataSet GetAccount(String customerid)
        {
            try
               {
               AccountDA cda = new AccountDA();
               return cda.GetAccount(customerid);

               }
               catch (Exception ex)
               {

               }

               return null;
        }
Пример #2
0
        public void InsertAccount(String appid, String customerid)
        {
            try
               {
               AccountDA cda = new AccountDA();
               cda.InsertAccount(appid,customerid);

               }
               catch (Exception ex)
               {

               }
        }