コード例 #1
0
ファイル: Customer.cs プロジェクト: Suki214/LearnOOP
 public DataTable GetData(string ID)
 {
     if (ID == null || ID.Length == 0)
     {
         return(customerBLL.GetAll());
     }
     else
     {
         return(customerBLL.GetById(ID));
     }
 }