Implemented GetAll and wireing up

This commit is contained in:
2020-03-26 22:28:40 +01:00
parent 1a686aba60
commit 9d80089a23
6 changed files with 97 additions and 17 deletions

View File

@ -14,5 +14,10 @@ namespace TrackerLibrary.Models
public string LastName { get; set; }
public string EmailAddress { get; set; }
public string CellPhoneNumber { get; set; }
public string FullName
{
get { return $"{FirstName} {LastName}"; }
}
}
}