14 lines
304 B
C#
14 lines
304 B
C#
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)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |