Files
BeWoPlaner/BeWo/ViewModel/ListViewModel/ServiceAccountingListVM.cs

15 lines
369 B
C#
Raw Normal View History

2016-06-27 01:45:38 +02:00
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)
{
}
}
}