14 lines
273 B
C#
14 lines
273 B
C#
using System.Collections.Generic;
|
|
|
|
using BS.Shared;
|
|
using BS.Shared.DataContracts;
|
|
|
|
namespace BeWo.ViewModel.ListViewModel
|
|
{
|
|
public class BudgetListVM : AbstractDCListMapperVM<BudgetDC, BudgetVM>
|
|
{
|
|
public BudgetListVM(List<BudgetDC> pDCs): base(pDCs)
|
|
{
|
|
}
|
|
}
|
|
} |