예제 #1
0
        public static Boolean HasOther(Int64 context_id, Int64 entity_id, String value)
        {
            if (instance == null)
            {
                instance = new BaseCache();
            }

            return(instance.HasOther(context_id, entity_id, value));
        }
예제 #2
0
        public static void AddItem(Int64 context_id, Int64 entity_id, String value)
        {
            if (instance == null)
            {
                instance = new BaseCache();
            }

            instance.AddItem(context_id, entity_id, value);
        }