コード例 #1
0
ファイル: BLLMngr.cs プロジェクト: joeLloyd/OOP_v3
 public DataSet GetCustomerAccounts()
 {
     DataSet ds = null;
     DALMngr dalManager = new DALMngr();
     try
     {
         ds = dalManager.GetCustomerAccounts();
     }
     catch (Exception ex)
     {
         throw ex;
     }
     return ds;
 }