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