Example #1
0
        public static bool Update(ConfigSkillcardlevelEntity configSkillcardlevelEntity, DbTransaction trans = null, string zoneId = "")
        {
            var provider = new ConfigSkillcardlevelProvider(zoneId);

            return(provider.Update(configSkillcardlevelEntity, trans));
        }
Example #2
0
        public static List <ConfigSkillcardlevelEntity> GetAll(string zoneId = "")
        {
            var provider = new ConfigSkillcardlevelProvider(zoneId);

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

            return(provider.Delete(rowId, trans));
        }
Example #4
0
        public static ConfigSkillcardlevelEntity GetById(System.Int32 rowId, string zoneId = "")
        {
            var provider = new ConfigSkillcardlevelProvider(zoneId);

            return(provider.GetById(rowId));
        }