15 lines
389 B
C#
15 lines
389 B
C#
using System.Collections.Generic;
|
|
using BS.Shared.DataContracts;
|
|
|
|
namespace BeWo.ViewModel.ListViewModel
|
|
{
|
|
public class PersonOrganisationRelationListVM : AbstractDCListMapperVM<Organisation2PersonDC, PersonOrganisationRelationVM>
|
|
{
|
|
|
|
public PersonOrganisationRelationListVM(List<Organisation2PersonDC> pDCs)
|
|
: base(pDCs)
|
|
{
|
|
}
|
|
}
|
|
}
|