示例#1
0
        public static bool Update(ConfigOlympicthegoldmedalEntity configOlympicthegoldmedalEntity, DbTransaction trans = null, string zoneId = "")
        {
            var provider = new ConfigOlympicthegoldmedalProvider(zoneId);

            return(provider.Update(configOlympicthegoldmedalEntity, trans));
        }
示例#2
0
        public static List <ConfigOlympicthegoldmedalEntity> GetAll(string zoneId = "")
        {
            var provider = new ConfigOlympicthegoldmedalProvider(zoneId);

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

            return(provider.Delete(idx, trans));
        }
示例#4
0
        public static ConfigOlympicthegoldmedalEntity GetById(System.Int32 idx, string zoneId = "")
        {
            var provider = new ConfigOlympicthegoldmedalProvider(zoneId);

            return(provider.GetById(idx));
        }