16 lines
558 B
C#
16 lines
558 B
C#
using System.Collections.Generic;
|
|
|
|
using BS.Shared.DataContracts;
|
|
|
|
namespace BeWo.ViewModel.ListViewModel
|
|
{
|
|
public class AssessmentSheetCategoryListVM : AbstractDCListMapperVM<AssessmentSheetCategoryDC, AssessmentSheetCategoryVM>
|
|
{
|
|
public AssessmentSheetCategoryListVM(List<AssessmentSheetCategoryDC> pDCs, List<AssessmentSheetValueDC> possibleValues) : base(pDCs)
|
|
{
|
|
this.PossibleValues = possibleValues;
|
|
}
|
|
|
|
public List<AssessmentSheetValueDC> PossibleValues { get; private set; }
|
|
}
|
|
} |