1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #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<ConsentSetVO> GetConsentSetList(ISqlMapper mapper, Hashtable param)
- {
- return mapper.QueryForList<ConsentSetVO>("getUserFormSet", param);
- }
- public IList<ConsentBySearchVO> GetConsentBySearch(ISqlMapper mapper, Hashtable param)
- {
- return mapper.QueryForList<ConsentBySearchVO>("GET_CONSENT_BY_SEARCH_LIST", param);
- }
- public IList<ConsentVO> GetConsentList(ISqlMapper mapper, Hashtable param)
- {
- return mapper.QueryForList<ConsentVO>("GET_CONSENT_LIST", param);
- }
- public object GetFormGuidByFormCd(ISqlMapper mapper, Hashtable param)
- {
- return mapper.QueryForObject("GET_FORM_GUID_BY_FORM_CD", param);
- }
- public IList<ConsentImageVO> GetConsentImage(ISqlMapper mapper, Hashtable param)
- {
- return mapper.QueryForList<ConsentImageVO>("GET_CONSENT_IMAGE", param);
- }
- public IList<UnFinishedListVO> GetUnfinishedListPerDoctor(ISqlMapper mapper, Hashtable param)
- {
- return mapper.QueryForList<UnFinishedListVO>("GetUnfinishedListPerDoctor", param);
- }
- public String GetConsentStateCheck(ISqlMapper mapper, Hashtable param)
- {
- return mapper.QueryForObject<String>("GetConsentStateCheck", param);
- }
- }
- }
|