using System.Collections.Generic; using BS.Shared.Core; using BS.Shared.DataContracts; namespace BeWo.ViewModel.ListViewModel { public class RatingListVM : AbstractDCListMapperVM { public RatingListVM(IEnumerable pList) : base(pList) { } protected override RatingVM CreateVM(RatingDC pDC) { var vm = base.CreateVM(pDC); return vm; } } }