11 lines
312 B
C#
11 lines
312 B
C#
using AICore.Context.Entry;
|
|
using BS.Shared.DataContracts;
|
|
|
|
namespace AICore.Context.Summary
|
|
{
|
|
internal class EmployeeDetailContextSummary : DetailContextSummary<EmployeeDetailContextEntry, EmployeeDC>
|
|
{
|
|
internal EmployeeDetailContextSummary(EmployeeDetailContextEntry employee) : base(employee) { }
|
|
}
|
|
}
|