#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.Dfh.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.Dfh.Dac { public class ConsentDac : DacBase { public IList GetConsentSetList(ISqlMapper mapper, Hashtable param) { return mapper.QueryForList("getUserFormSet", param); } public IList GetConsentBySearch(ISqlMapper mapper, Hashtable param) { return mapper.QueryForList("GET_CONSENT_BY_SEARCH_LIST", param); } public IList GetConsentList(ISqlMapper mapper, Hashtable param) { return mapper.QueryForList("GET_CONSENT_LIST", param); } public object GetFormGuidByFormCd(ISqlMapper mapper, Hashtable param) { return mapper.QueryForObject("GET_FORM_GUID_BY_FORM_CD", param); } public IList GetConsentImage(ISqlMapper mapper, Hashtable param) { return mapper.QueryForList("GET_CONSENT_IMAGE", param); } public IList GetUnfinishedListPerDoctor(ISqlMapper mapper, Hashtable param) { return mapper.QueryForList("GetUnfinishedListPerDoctor", param); } public String GetConsentStateCheck(ISqlMapper mapper, Hashtable param) { return mapper.QueryForObject("GetConsentStateCheck", param); } } }