public static void DeleteCache <T>(BussParam bussParam) where T : BussCache { string key = typeof(T).FullName + bussParam.GetUnique(); DeleteCache(key); }
public static dynamic GetCache <T>(BussParam bussParam) where T : BussCache { string key = typeof(T).FullName + bussParam.GetUnique(); return(GetCache <T>(key)); }
public static bool DeleteCache <T>(BussParam bussParam) { string key = typeof(T).FullName + bussParam.GetUnique(); return(DeleteCache(key)); }