Files
BeWoPlaner/BeWo/ViewModel/ListViewModel/ArbeitszeitEintragListVM.cs
2019-09-27 15:55:01 +02:00

13 lines
338 B
C#

using System.Collections.Generic;
using BS.Shared.DataContracts;
namespace BeWo.ViewModel.ListViewModel
{
public class ArbeitszeitEintragListVM : AbstractDCListMapperVM<ArbeitszeitEintragDC, ArbeitszeitEintragVM>
{
public ArbeitszeitEintragListVM(IEnumerable<ArbeitszeitEintragDC> pList) : base(pList)
{
}
}
}