/******************************************************************************* * Copyright(c) 2014 DongkeSoft All rights reserved. / Confidential * 类的信息: * 1.程序名称:DataTableWrapper.cs * 2.功能描述:类文件 * 编辑履历: * 作者 日期 版本 修改内容 * 陈晓野 2014/09/29 1.00 新建 *******************************************************************************/ using System.Data; namespace Dongke.IBOSS.PRD.Basics.BaseControls { /// /// 类文件 /// public class DataTableWrapper : ListSelectionWrapper { public DataTableWrapper(DataTable dataTable, string usePropertyAsDisplayName, string valueProperty) : base(dataTable.Rows, usePropertyAsDisplayName, valueProperty) { } } }