23 lines
491 B
C#
23 lines
491 B
C#
|
|
using System.Collections.Generic;
|
|||
|
|
using BS.Shared.Core;
|
|||
|
|
using BS.Shared.DataContracts;
|
|||
|
|
|
|||
|
|
namespace BeWo.ViewModel.ListViewModel
|
|||
|
|
{
|
|||
|
|
public class RatingListVM : AbstractDCListMapperVM<RatingDC, RatingVM>
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
public RatingListVM(IEnumerable<RatingDC> pList) : base(pList)
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
protected override RatingVM CreateVM(RatingDC pDC)
|
|||
|
|
{
|
|||
|
|
var vm = base.CreateVM(pDC);
|
|||
|
|
|
|||
|
|
|
|||
|
|
return vm;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|