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