DataTableWrappers.cs 918 B

12345678910111213141516171819202122232425
  1. /*******************************************************************************
  2. * Copyright(c) 2014 DongkeSoft All rights reserved. / Confidential
  3. * 类的信息:
  4. * 1.程序名称:DataTableWrapper.cs
  5. * 2.功能描述:类文件
  6. * 编辑履历:
  7. * 作者 日期 版本 修改内容
  8. * 陈晓野 2014/09/29 1.00 新建
  9. *******************************************************************************/
  10. using System.Data;
  11. namespace Dongke.IBOSS.PRD.Basics.BaseControls
  12. {
  13. /// <summary>
  14. /// 类文件
  15. /// </summary>
  16. public class DataTableWrapper : ListSelectionWrapper<DataRow, object>
  17. {
  18. public DataTableWrapper(DataTable dataTable, string usePropertyAsDisplayName, string valueProperty) :
  19. base(dataTable.Rows, usePropertyAsDisplayName, valueProperty)
  20. {
  21. }
  22. }
  23. }