public ITo Set(string memberToSet)
 {
     MemberToSet = memberToSet;
     mSetOrCall  = SetOrCall.Set;
     return(this);
 }
 public IAfter Call(Action <T> Action)
 {
     this.ActionT = Action;
     mSetOrCall   = SetOrCall.Call;
     return(this);
 }