12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- 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<Int32>("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
- }
- }
|