13 lines
333 B
C#
13 lines
333 B
C#
using System.Collections.Generic;
|
|
|
|
using BS.Shared.DataContracts;
|
|
|
|
namespace BeWo.ViewModel.ListViewModel
|
|
{
|
|
public class ServiceInvoiceListVM : AbstractDCListMapperVM<ServiceInvoiceDC, ServiceInvoiceVM>
|
|
{
|
|
public ServiceInvoiceListVM(List<ServiceInvoiceDC> pDCs) : base(pDCs)
|
|
{
|
|
}
|
|
}
|
|
} |