13 lines
393 B
C#
13 lines
393 B
C#
using System.Collections.Generic;
|
|
|
|
using BS.Shared.DataContracts;
|
|
|
|
namespace BeWo.ViewModel.ListViewModel
|
|
{
|
|
public class OrganisationPersonRelationListVM : AbstractDCListMapperVM<OrganisationPersonRelationDC, OrganisationPersonRelationVM>
|
|
{
|
|
public OrganisationPersonRelationListVM(List<OrganisationPersonRelationDC> pDCs) : base(pDCs)
|
|
{
|
|
}
|
|
}
|
|
} |