Skip to content

Instantly share code, notes, and snippets.

@angelovstanton
Created February 19, 2017 12:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save angelovstanton/2f6014fd0804540120138918cb24e1a9 to your computer and use it in GitHub Desktop.
Save angelovstanton/2f6014fd0804540120138918cb24e1a9 to your computer and use it in GitHub Desktop.
public class Client
{
public Client(string firstName, string lastName, string email, string password)
{
this.FirstName = firstName;
this.LastName = lastName;
this.Email = email;
this.Password = password;
}
public Client()
{
this.FirstName = "Default First Name";
this.LastName = "Default Last Name";
this.Email = "myDefaultClientEmail@gmail.com";
this.Password = "12345";
}
public string FirstName { get; set; }
public string LastName { get; set; }
public string Email { get; set; }
public string Password { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment