13 lines
279 B
C#
13 lines
279 B
C#
using Ardalis.Specification;
|
|
using BookHive.Models;
|
|
|
|
namespace BookHive.Specifications.Authors;
|
|
|
|
public class GetAuthorByIdSpec : SingleResultSpecification<Author>
|
|
{
|
|
public GetAuthorByIdSpec(int authorId)
|
|
{
|
|
Query
|
|
.Where(x => x.Id == authorId);
|
|
}
|
|
} |