12 lines
368 B
C#
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) { }
|
|||
|
|
}
|
|||
|
|
}
|