18 lines
616 B
C#
18 lines
616 B
C#
using System.Collections.Generic;
|
|
|
|
using BS.Shared.DataContracts;
|
|
|
|
namespace BeWo.ViewModel.ListViewModel
|
|
{
|
|
public class CustomerEmployeeRelationListVM : AbstractDCListMapperVM<CustomerEmployeeRelationDC, CustomerEmployeeRelationVM>
|
|
{
|
|
public static string PropertyName_PossibleRoles = "PossibleRoles";
|
|
|
|
public CustomerEmployeeRelationListVM(IEnumerable<CustomerEmployeeRelationDC> pDCs, List<ValueListEntryDC> pPossibleRoles) : base(pDCs)
|
|
{
|
|
PossibleRoles = pPossibleRoles;
|
|
}
|
|
|
|
public List<ValueListEntryDC> PossibleRoles { get; }
|
|
}
|
|
} |