13 lines
322 B
C#
13 lines
322 B
C#
using System.Collections.Generic;
|
|
|
|
using BS.Shared.DataContracts;
|
|
|
|
namespace BeWo.ViewModel.ListViewModel
|
|
{
|
|
public class PlacementListVM : AbstractDCListMapperVM<PlacementDC, PlacementVM>
|
|
{
|
|
public PlacementListVM(List<PlacementDC> pPlacements) : base(pPlacements)
|
|
{
|
|
}
|
|
}
|
|
} |