123456789101112131415161718192021 |
- #region
- #endregion
- using System;
- using CLIP.eForm.Consent.Entity;
- using CLIP.eForm.Server.Data;
- using System.Collections.Generic;
- using IBatisNet.DataMapper;
- using System.Collections;
- namespace CLIP.eForm.Consent.Dac
- {
- class OperationNameDAC : DacBase
- {
- public List<string> getOpNameList(ISqlMapper mapper, Hashtable args)
- {
- //return mapper.QueryForObject<OperationNameVO>("GET_OPERATION_NAME", args);
- return null;
- }
- }
- }
|