Files
BeWoPlaner/BeWo/ViewModel/ListViewModel/ArbeitszeitEintragListVM.cs
2017-05-17 08:28:12 +02:00

15 lines
345 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)
{
}
}
}