123456789101112131415161718192021222324252627282930 |
- #region Copyright © 2015 CLIPSOFT Co.,Ltd. All Rights Reserved.
- //
- // All rights are reserved. Reproduction or transmission in whole or in part,
- // in any form or by any means, electronic, mechanical or otherwise, is
- // prohibited without the prior written consent of the copyright owner.
- //
- // Filename:SelectConsentSvcDac.cs
- //
- #endregion
- using CLIP.eForm.Consent.Entity;
- using CLIP.eForm.Server.Data;
- using IBatisNet.DataMapper;
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace CLIP.eForm.Consent.Dac
- {
- //class FormCategoryDac
- public class FormCategoryDac : DacBase
- {
- public IList<CategoryForDropdownVO> GetCategoryForDropdown(ISqlMapper mapper, Hashtable param)
- {
- return mapper.QueryForList<CategoryForDropdownVO>("GET_CATEGORY_FOR_DROPDOWN", param);
- }
- }
- }
|