public DataTable GetData(string ID) { if (ID == null || ID.Length == 0) { return(customerBLL.GetAll()); } else { return(customerBLL.GetById(ID)); } }