15 lines
369 B
C#
15 lines
369 B
C#
using System.Collections.Generic;
|
|
|
|
using BS.Shared.DataContracts;
|
|
|
|
namespace BeWo.ViewModel.ListViewModel
|
|
{
|
|
public class ServiceAccountingListVM : AbstractDCListMapperVM<ServiceAccountingDC, ServiceAccountingVM>
|
|
{
|
|
public ServiceAccountingListVM(List<ServiceAccountingDC> pDCList)
|
|
: base(pDCList)
|
|
{
|
|
}
|
|
|
|
}
|
|
} |