Files
BeWoPlaner/BeWo/ViewModel/ListViewModel/MedArtListVM.cs
2016-06-27 01:45:38 +02:00

12 lines
270 B
C#

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