Files
BeWoPlaner/BeWo/ViewModel/ListViewModel/NotizenEintragListVM.cs

14 lines
304 B
C#
Raw Normal View History

2018-10-08 11:57:16 +02:00
using System.Collections.Generic;
using BS.Shared.DataContracts;
namespace BeWo.ViewModel.ListViewModel
{
public class NotizenEintragListVM : AbstractDCListMapperVM<NotizenEintragDC, NotizenEintragVM>
{
public NotizenEintragListVM(IEnumerable<NotizenEintragDC> pList) : base(pList)
{
}
}
}