using System.Collections.Generic; using BS.Shared.DataContracts; namespace BeWo.ViewModel.ListViewModel { public class ArbeitszeitListVM : AbstractDCListMapperVM { public ArbeitszeitListVM(IEnumerable pDCs) : base(pDCs) { } protected override ArbeitszeitVM CreateVM(ArbeitszeitDC pDC) { var vm = base.CreateVM(pDC); return vm; } } }