20 lines
607 B
C#
20 lines
607 B
C#
using _0_Framework.Domain;
|
|
using Company.Domain.EmployeeAgg;
|
|
using Company.Domain.EmployeeDocumentItemAgg;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Company.Domain.EmployeeDocumentsAdminSelectionAgg
|
|
{
|
|
public class EmployeeDocumentsAdminSelection : EntityBase
|
|
{
|
|
public EmployeeDocumentsAdminSelection(long employeeId)
|
|
{
|
|
EmployeeId = employeeId;
|
|
}
|
|
public long EmployeeId { get; private set; }
|
|
public Employee Employee { get; private set; }
|
|
public List<EmployeeDocumentItem> SelectedEmployeeDocumentItems { get; private set; }
|
|
|
|
}
|
|
}
|