using System.Collections.Generic; using BS.Shared.Core; using BS.Shared.DataContracts; namespace BeWo.ViewModel.ListViewModel { public class GoalRatingListVM : AbstractDCListMapperVM { public static string PropertyName_AllRatingTypes = "AllRatingTypes"; public List AllRatingTypes { get; } public GoalRatingListVM(IEnumerable pList, List allRatingTypes) : base(pList) { AllRatingTypes = allRatingTypes; } protected override GoalRatingVM CreateVM(GoalRatingDC pDC) { var vm = base.CreateVM(pDC); return vm; } } }