2016-06-27 01:45:38 +02:00
|
|
|
|
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)
|
|
|
|
|
|
{
|
2019-09-27 15:55:01 +02:00
|
|
|
|
PossibleRoles = pPossibleRoles;
|
2016-06-27 01:45:38 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2019-09-27 15:55:01 +02:00
|
|
|
|
public List<ValueListEntryDC> PossibleRoles { get; }
|
2016-06-27 01:45:38 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|