14 lines
340 B
C#
14 lines
340 B
C#
using System.Collections.Generic;
|
|
|
|
using BS.Shared.DataContracts;
|
|
|
|
namespace BeWo.ViewModel.ListViewModel
|
|
{
|
|
public class BargeldtransaktionsListVM : AbstractDCListMapperVM<BargeldtransaktionDC, BargeldtransaktionsVM>
|
|
{
|
|
public BargeldtransaktionsListVM(IEnumerable<BargeldtransaktionDC> pList) : base(pList)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |