24 lines
765 B
C#
24 lines
765 B
C#
using System.Collections.Generic;
|
|
|
|
using BS.Shared;
|
|
using BS.Shared.DataContracts;
|
|
|
|
namespace BeWo.ViewModel.ListViewModel
|
|
{
|
|
public class SupportConceptGoalListVM : ValueListEntryListVM
|
|
{
|
|
public static string PropertyName_PossibleCategories = "PossibleCategories";
|
|
|
|
private readonly List<ValueListEntryDC> _PossibleCategories;
|
|
|
|
public SupportConceptGoalListVM(List<ValueListEntryDC> pDCs, List<ValueListEntryDC> pPossibleCategories) : base(ValueListEntryType.SupportConceptGoalType, pDCs)
|
|
{
|
|
this._PossibleCategories = pPossibleCategories;
|
|
}
|
|
|
|
public List<ValueListEntryDC> PossibleCategories
|
|
{
|
|
get { return this._PossibleCategories; }
|
|
}
|
|
}
|
|
} |