CustomerService.BLL.Customer.GetModelList C# (CSharp) Méthode

GetModelList() public méthode

获得数据列表
public GetModelList ( string strWhere ) : List
strWhere string
Résultat List
		public List<CustomerService.Model.Customer> GetModelList(string strWhere)
		{
			DataSet ds = dal.GetList(strWhere);
			return DataTableToList(ds.Tables[0]);
		}
		/// <summary>