CustomerService.BLL.Customer.GetModelList C# (CSharp) 메소드

GetModelList() 공개 메소드

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