12 lines
270 B
C#
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) {}
|
|
}
|
|
}
|