#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 GetCategoryForDropdown(ISqlMapper mapper, Hashtable param) { return mapper.QueryForList("GET_CATEGORY_FOR_DROPDOWN", param); } } }