コード例 #1
0
        public static bool Update(ConfigLeaguefightmapEntity configLeaguefightmapEntity, DbTransaction trans = null, string zoneId = "")
        {
            var provider = new ConfigLeaguefightmapProvider(zoneId);

            return(provider.Update(configLeaguefightmapEntity, trans));
        }
コード例 #2
0
        public static bool Delete(System.Int32 idx, DbTransaction trans = null, string zoneId = "")
        {
            ConfigLeaguefightmapProvider provider = new ConfigLeaguefightmapProvider(zoneId);

            return(provider.Delete(idx, trans));
        }
コード例 #3
0
        public static ConfigLeaguefightmapEntity GetById(System.Int32 idx, string zoneId = "")
        {
            var provider = new ConfigLeaguefightmapProvider(zoneId);

            return(provider.GetById(idx));
        }
コード例 #4
0
        public static List <ConfigLeaguefightmapEntity> GetAll(string zoneId = "")
        {
            var provider = new ConfigLeaguefightmapProvider(zoneId);

            return(provider.GetAll());
        }
コード例 #5
0
        public static Dictionary <int, List <int> > GetAllForCache(string zoneId = "")
        {
            var provider = new ConfigLeaguefightmapProvider(zoneId);

            return(provider.GetAllForCache());
        }