23 lines
744 B
C#
23 lines
744 B
C#
using System.Collections.Generic;
|
|
|
|
using BS.Shared.DataContracts;
|
|
|
|
namespace BeWo.ViewModel.ListViewModel
|
|
{
|
|
public class WohnheimEmployeeRelationListVM : AbstractDCListMapperVM<WohnheimEmployeeRelationDC, WohnheimEmployeeRelationVM>
|
|
{
|
|
public static string PropertyName_PossibleRoles = "PossibleRoles";
|
|
|
|
private readonly List<ValueListEntryDC> _PossibleRoles;
|
|
|
|
public WohnheimEmployeeRelationListVM(List<WohnheimEmployeeRelationDC> pDCs, List<ValueListEntryDC> pPossibleRoles) : base(pDCs)
|
|
{
|
|
this._PossibleRoles = pPossibleRoles;
|
|
}
|
|
|
|
public List<ValueListEntryDC> PossibleRoles
|
|
{
|
|
get { return this._PossibleRoles; }
|
|
}
|
|
}
|
|
} |