Files
BeWoPlaner/BeWo/ViewModel/ListViewModel/ServiceAccountingListVM.cs
2016-06-27 01:45:38 +02:00

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)
{
}
}
}