14 lines
303 B
C#
14 lines
303 B
C#
using Ardalis.Specification;
|
|
using BookHive.Models;
|
|
|
|
namespace BookHive.Specifications.Books;
|
|
|
|
public class GetBookByIdSpec : SingleResultSpecification<Book>
|
|
{
|
|
public GetBookByIdSpec(int bookId)
|
|
{
|
|
Query
|
|
.Include(x => x.Author)
|
|
.Where(x => x.Id == bookId);
|
|
}
|
|
} |