Пример #1
0
        public static bool Update(ConfigRevelationthedifficultyEntity configRevelationthedifficultyEntity, DbTransaction trans = null, string zoneId = "")
        {
            var provider = new ConfigRevelationthedifficultyProvider(zoneId);

            return(provider.Update(configRevelationthedifficultyEntity, trans));
        }
Пример #2
0
        public static List <ConfigRevelationthedifficultyEntity> GetAll(string zoneId = "")
        {
            var provider = new ConfigRevelationthedifficultyProvider(zoneId);

            return(provider.GetAll());
        }
Пример #3
0
        public static bool Delete(System.Int32 mark, System.Int32 smallClearance, DbTransaction trans = null, string zoneId = "")
        {
            ConfigRevelationthedifficultyProvider provider = new ConfigRevelationthedifficultyProvider(zoneId);

            return(provider.Delete(mark, smallClearance, trans));
        }
Пример #4
0
        public static ConfigRevelationthedifficultyEntity GetById(System.Int32 mark, System.Int32 smallClearance, string zoneId = "")
        {
            var provider = new ConfigRevelationthedifficultyProvider(zoneId);

            return(provider.GetById(mark, smallClearance));
        }