using System; using CLIP.eForm.Server.Data; using CLIP.eForm.Server.VO; using IBatisNet.DataMapper; namespace CLIP.eForm.Consent.Dfh.Dac { public class CommonCodeDac : DacBase { #region #### SELECT #### public int GetSequence(ISqlMapper mapper, Code param) { return mapper.QueryForObject("GET_SEQUENCE", param); } #endregion #region #### INSERT #### public void InsertSequence(ISqlMapper mapper, Code param) { mapper.Insert("SET_SEQUENCE", param); } #endregion #region #### UPDATE #### public void UpdateSequence(ISqlMapper mapper, Code param) { mapper.Update("UPDATE_SEQUENCE", param); } #endregion #region #### DELETE #### #endregion } }