You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
230 B

  1. #include <string>
  2. #include "Person.h"
  3. Person::Person(string name, string password, string email, string phoneNo)
  4. {
  5. this->name = name;
  6. this->password = password;
  7. this->email = email;
  8. this->phoneNo = phoneNo;
  9. }