Skip to content

Instantly share code, notes, and snippets.

@gdyrrahitis
Created February 24, 2018 13:40
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 gdyrrahitis/dacc8b4cede5a0c9dd9f59134eb55669 to your computer and use it in GitHub Desktop.
Save gdyrrahitis/dacc8b4cede5a0c9dd9f59134eb55669 to your computer and use it in GitHub Desktop.
private readonly IDictionary<string, User> _users = new Dictionary<string, User>
{
{
"George", new User {
Id = 1,
UserName = "George",
FirstName = "George",
LastName = "Dyrrachitis",
Password = "1234",
DateOfBirth = new DateTime(1989, 10, 26)
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment