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