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

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

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

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

            return(provider.GetById(idx));
        }