Files
BeWoPlaner/BeWo/ViewModel/ListViewModel/CustomerEmployeeRelationListVM.cs
2019-09-27 15:55:01 +02:00

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; }
}
}