コード例 #1
0
        public static bool Update(ConfigTxchargeidEntity configTxchargeidEntity, DbTransaction trans = null, string zoneId = "")
        {
            var provider = new ConfigTxchargeidProvider(zoneId);

            return(provider.Update(configTxchargeidEntity, trans));
        }
コード例 #2
0
        public static List <ConfigTxchargeidEntity> GetAll(string zoneId = "")
        {
            var provider = new ConfigTxchargeidProvider(zoneId);

            return(provider.GetAll());
        }
コード例 #3
0
        public static bool Delete(System.Int32 idx, DbTransaction trans = null, string zoneId = "")
        {
            ConfigTxchargeidProvider provider = new ConfigTxchargeidProvider(zoneId);

            return(provider.Delete(idx, trans));
        }
コード例 #4
0
        public static ConfigTxchargeidEntity GetById(System.Int32 idx, string zoneId = "")
        {
            var provider = new ConfigTxchargeidProvider(zoneId);

            return(provider.GetById(idx));
        }