public ResponseVerifyClientExists ClientExistsQuestion(string identifier, string name, string last) { RequestClientExists ca = new RequestClientExists(identifier, name, last); ResponseVerifyClientExists ce = ResponseVerifyClientExists.ResponseToClientExists(ca); return(ce); }
public ResponseVerifyClientExists VerifyClient(string identifier, string name, string last_name) { RequestClientExists requestClientExists = new RequestClientExists(identifier, name, last_name); ResponseVerifyClientExists response = ResponseVerifyClientExists.ResponseToClientExists(requestClientExists); return(response); }