Files
pyrofetes-backend/PyroFetes/Specifications/Users/GetUserByIdSpec.cs
T
2026-05-24 17:22:03 +01:00

13 lines
276 B
C#

using Ardalis.Specification;
using PyroFetes.Models;
namespace PyroFetes.Specifications.Users;
public sealed class GetUserByIdSpec : SingleResultSpecification<User>
{
public GetUserByIdSpec(int userId)
{
Query
.Where(x => x.Id == userId);
}
}