Apply suggestions from code review

Co-authored-by: Cody Robibero <cody@robibe.ro>
This commit is contained in:
JPVenson
2024-10-09 21:03:57 +02:00
committed by GitHub
parent 5267851e64
commit 473628ba3a
7 changed files with 7 additions and 11 deletions

View File

@@ -14,7 +14,7 @@ public interface IPeopleRepository
/// Gets the people.
/// </summary>
/// <param name="filter">The query.</param>
/// <returns>List&lt;PersonInfo&gt;.</returns>
/// <returns>The list of people matching the filter.</returns>
IReadOnlyList<PersonInfo> GetPeople(InternalPeopleQuery filter);
/// <summary>
@@ -28,6 +28,6 @@ public interface IPeopleRepository
/// Gets the people names.
/// </summary>
/// <param name="filter">The query.</param>
/// <returns>List&lt;System.String&gt;.</returns>
/// <returns>The list of people names matching the filter.</returns>
IReadOnlyList<string> GetPeopleNames(InternalPeopleQuery filter);
}