예제 #1
0
 public static Dt_netcustomers[] getAllCustomers()
 {
     try
     {
         Dt_netcustomers[] cus = Dt_netcustomersDao.FindAll(new Order("Customername", true),
                                                            new EqExpression("Isdeleted", (int)EnmIsdeleted.使用中));
         return(cus);
     }
     catch (Exception ex)
     {
         Log.Error(ex.Message);
         MessageHelper.ShowMessage("E005", "客户");
         return(null);
     }
 }