mirror of
https://github.com/farcasclaudiu/PracticeCalendar.git
synced 2026-06-22 11:01:27 +03:00
13 lines
293 B
C#
13 lines
293 B
C#
using Ardalis.Specification;
|
|
|
|
namespace PracticeCalendar.Domain.Entities.Specifications
|
|
{
|
|
public class PracticeEventsWithAttendees : Specification<PracticeEvent>
|
|
{
|
|
public PracticeEventsWithAttendees()
|
|
{
|
|
Query.Include(x => x.Attendees);
|
|
}
|
|
}
|
|
}
|