FormCategoryDac.cs 894 B

123456789101112131415161718192021222324252627282930
  1. #region Copyright © 2015 CLIPSOFT Co.,Ltd. All Rights Reserved.
  2. //
  3. // All rights are reserved. Reproduction or transmission in whole or in part,
  4. // in any form or by any means, electronic, mechanical or otherwise, is
  5. // prohibited without the prior written consent of the copyright owner.
  6. //
  7. // Filename:SelectConsentSvcDac.cs
  8. //
  9. #endregion
  10. using CLIP.eForm.Consent.Entity;
  11. using CLIP.eForm.Server.Data;
  12. using IBatisNet.DataMapper;
  13. using System;
  14. using System.Collections;
  15. using System.Collections.Generic;
  16. using System.Linq;
  17. using System.Text;
  18. namespace CLIP.eForm.Consent.Dac
  19. {
  20. //class FormCategoryDac
  21. public class FormCategoryDac : DacBase
  22. {
  23. public IList<CategoryForDropdownVO> GetCategoryForDropdown(ISqlMapper mapper, Hashtable param)
  24. {
  25. return mapper.QueryForList<CategoryForDropdownVO>("GET_CATEGORY_FOR_DROPDOWN", param);
  26. }
  27. }
  28. }