public static bool Update(ConfigOlympicexchangerizeEntity configOlympicexchangerizeEntity, DbTransaction trans = null, string zoneId = "")
        {
            var provider = new ConfigOlympicexchangerizeProvider(zoneId);

            return(provider.Update(configOlympicexchangerizeEntity, trans));
        }
        public static List <ConfigOlympicexchangerizeEntity> GetAll(string zoneId = "")
        {
            var provider = new ConfigOlympicexchangerizeProvider(zoneId);

            return(provider.GetAll());
        }
        public static bool Delete(System.Int32 idx, DbTransaction trans = null, string zoneId = "")
        {
            ConfigOlympicexchangerizeProvider provider = new ConfigOlympicexchangerizeProvider(zoneId);

            return(provider.Delete(idx, trans));
        }
        public static ConfigOlympicexchangerizeEntity GetById(System.Int32 idx, string zoneId = "")
        {
            var provider = new ConfigOlympicexchangerizeProvider(zoneId);

            return(provider.GetById(idx));
        }