Exemplo n.º 1
0
 public virtual void Update(T @new, T old)
 {
     try
     {
         innerProvider.Update(@new, old);
     }
     finally
     {
         ClearObjectCache(old);
     }
 }
Exemplo n.º 2
0
        public virtual void Update(T @new, T old)
        {
            ClearObjectCache(old);

            innerProvider.Update(@new, old);
        }