Beispiel #1
0
        public static bool Update(ConfigPlayerthestarEntity configPlayerthestarEntity, DbTransaction trans = null, string zoneId = "")
        {
            var provider = new ConfigPlayerthestarProvider(zoneId);

            return(provider.Update(configPlayerthestarEntity, trans));
        }
Beispiel #2
0
        public static List <ConfigPlayerthestarEntity> GetAll(string zoneId = "")
        {
            var provider = new ConfigPlayerthestarProvider(zoneId);

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

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

            return(provider.GetById(idx));
        }