13 lines
267 B
C#
13 lines
267 B
C#
using Ardalis.Specification;
|
|
using BookHive.Models;
|
|
|
|
namespace BookHive.Specifications.Loans;
|
|
|
|
public class GetLoanByIdSpec : SingleResultSpecification<Loan>
|
|
{
|
|
public GetLoanByIdSpec(int loanId)
|
|
{
|
|
Query
|
|
.Where(x => x.Id == loanId);
|
|
}
|
|
} |