| 12345678910111213141516171819202122232425 |
- /*******************************************************************************
- * 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
- {
- /// <summary>
- /// 类文件
- /// </summary>
- public class DataTableWrapper : ListSelectionWrapper<DataRow, object>
- {
- public DataTableWrapper(DataTable dataTable, string usePropertyAsDisplayName, string valueProperty) :
- base(dataTable.Rows, usePropertyAsDisplayName, valueProperty)
- {
- }
- }
- }
|