FormCategoryDac.cs.svn-base 862 B

123456789101112131415161718192021222324252627
  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. //class FormCategoryDac
  20. public class FormCategoryDac : DacBase {
  21. public IList<CategoryForDropdownVO> GetCategoryForDropdown(ISqlMapper mapper, Hashtable param) {
  22. return mapper.QueryForList<CategoryForDropdownVO>("GET_CATEGORY_FOR_DROPDOWN", param);
  23. }
  24. }
  25. }