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

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

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

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

            return(provider.GetById(idx));
        }