Files
BeWoPlaner/AICore/Context/Summary/EmployeeNavigationContextSummary.cs

12 lines
368 B
C#
Raw Normal View History

2025-07-25 14:27:57 +02:00
using AICore.Context.Entry;
using BeWo.Data.Entities;
using System.Collections.Generic;
namespace AICore.Context.Summary
{
public class EmployeeNavigationContextSummary : NavigationContextSummary<EmployeeNavigationContextEntry, Employee>
{
public EmployeeNavigationContextSummary(IEnumerable<EmployeeNavigationContextEntry> employee) : base(employee) { }
}
}