Files
BeWoPlaner/AICore/Context/Summary/EmployeeNavigationContextSummary.cs
2025-07-25 14:27:57 +02:00

12 lines
368 B
C#

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) { }
}
}