public bool Equals(ActionWrapper other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(Equals(other.action, action));
 }
 public ActionFacade(ActionWrapper action, Naked target, IFrameworkFacade frameworkFacade)
 {
     this.action     = action;
     this.target     = target;
     FrameworkFacade = frameworkFacade;
 }