Files
TP-Fluent/BookHive/Specifications/Reviews/GetReviewByIdSpec.cs
2026-03-09 22:09:10 +01:00

13 lines
279 B
C#

using Ardalis.Specification;
using BookHive.Models;
namespace BookHive.Specifications.Reviews;
public class GetReviewByIdSpec : SingleResultSpecification<Review>
{
public GetReviewByIdSpec(int reviewId)
{
Query
.Where(x => x.Id == reviewId);
}
}