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

@ -58,5 +58,10 @@ namespace TrackerLibrary.DataAccess
return model;
}
public List<PersonModel> GetPerson_All()
{
return PeopleFile.FullFilePath().LoadFile().ConvertToPersonModels();
}
}
}