public void Apply(T record)
 {
     _action(record);
     if (Inner != null)
     {
         Inner.Apply(record);
     }
 }