Пример #1
0
        public static void DeleteCache <T>(BussParam bussParam) where T : BussCache
        {
            string key = typeof(T).FullName + bussParam.GetUnique();

            DeleteCache(key);
        }
Пример #2
0
        public static dynamic GetCache <T>(BussParam bussParam) where T : BussCache
        {
            string key = typeof(T).FullName + bussParam.GetUnique();

            return(GetCache <T>(key));
        }
Пример #3
0
        public static bool DeleteCache <T>(BussParam bussParam)
        {
            string key = typeof(T).FullName + bussParam.GetUnique();

            return(DeleteCache(key));
        }