public bool Equals(ActionFacade other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(Equals(other.action, action));
 }
 public bool Equals(ActionFacade other) {
     if (ReferenceEquals(null, other)) { return false; }
     if (ReferenceEquals(this, other)) { return true; }
     return Equals(other.action, action);
 }