Exemplo n.º 1
0
 public Volunteer(string firstName, string lastName, string address, string city, string postalCode, string emailAddress, DateTime dateTime, Gender userGender, bool status, AccountType accountType, string password) : base(firstName, lastName, address, city, postalCode, emailAddress, dateTime, userGender, status, accountType, password)
 {
 }
Exemplo n.º 2
0
 public Professional(int userId, string firstName, string lastName, string address, string city, string postalCode, string emailAddress, DateTime dateBirth, Gender userGender, bool status, AccountType accountType, string password) : base(userId, firstName, lastName, address, city, postalCode, emailAddress, dateBirth, userGender, status, accountType, password)
 {
 }
Exemplo n.º 3
0
 protected User(int userId, string firstName, string lastName, string address, string city, string postalCode, string emailAddress, DateTime birthDate, Gender userGender, bool status, AccountType accountType, string password, User professional)
 {
     UserId          = userId;
     FirstName       = firstName;
     LastName        = lastName;
     Address         = address;
     City            = city;
     PostalCode      = postalCode;
     EmailAddress    = emailAddress;
     BirthDate       = birthDate;
     UserGender      = userGender;
     Status          = status;
     UserAccountType = accountType;
     Password        = password;
     Professional    = professional;
 }