//================================================================================================== // // Clip-Soft eForm Project // //================================================================================================== // Written by 강성웅 // // 2014-08-20 //================================================================================================== // Copyright (c) 2013 Clip-Soft. All rights reserved. // // This software is the confidential and proprietary information of Clip-Soft. // You shall not disclose such Confidential Information and shall use it only in accordance with the terms of the license agreement you entered // into with Clip-Soft. //================================================================================================== using System; using CLIP.eForm.Server.Data; using CLIP.eForm.Server.VO; using IBatisNet.DataMapper; using System.Collections.Generic; using System.Collections; namespace CLIP.eForm.Consent.Dfh.Dac { public class SaveConsentDac : DacBase { #region #### INSERT #### public void InsertConsentMst(ISqlMapper mapper, Hashtable param) { mapper.QueryForObject("INSERT_CONSENT_MST", param); } public void InsertConsentData(ISqlMapper mapper, Hashtable param) { mapper.QueryForObject("INSERT_CONSENT_DATA", param); } public void InsertConsentImage(ISqlMapper mapper, Hashtable param) { mapper.QueryForObject("INSERT_CONSENT_IMAGE", param); } public void InsertConsentImageSign(ISqlMapper mapper, Hashtable param) { mapper.QueryForObject("INSERT_CONSENT_IMAGE_SIGN", param); } #endregion #region #### UPDATE #### public void UpdateConsentMst(ISqlMapper mapper, Hashtable param) { mapper.QueryForObject("UPDATE_CONSENT_MST", param); } public void UpdateConsentMstForReissue(ISqlMapper mapper, Hashtable param) { mapper.QueryForObject("UPDATE_CONSENT_MST_FOR_REISSUE", param); } public void UpdateConsentMstForDelete(ISqlMapper mapper, Hashtable param) { mapper.QueryForObject("UPDATE_CONSENT_MST_FOR_DELETE", param); } public void UpdateConsentMstStatus(ISqlMapper mapper, Hashtable param) { mapper.QueryForObject("UPDATE_CONSENT_MST_STATUS", param); } public void SetConsentDataChoice(ISqlMapper mapper, Hashtable param) { mapper.QueryForObject("INSERT_CONSENT_DATA_CHOICE", param); } #endregion #region #### SET #### public void SetMediHistory(ISqlMapper mapper, Hashtable param) { mapper.QueryForObject("SET_MEDI_HISTORY", param); } #endregion } }