Created all validators

This commit is contained in:
2026-03-10 10:43:28 +01:00
parent 9f858df5f8
commit 5c3419abc0
19 changed files with 54 additions and 34 deletions

View File

@@ -8,6 +8,7 @@ public class GetBookByIdSpec : SingleResultSpecification<Book>
public GetBookByIdSpec(int bookId)
{
Query
.Include(x => x.Author)
.Where(x => x.Id == bookId);
}
}