22 lines
534 B
C#
22 lines
534 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
using BeWo.Core;
|
|
|
|
using BS.Shared.DataContracts;
|
|
|
|
namespace BeWo.ViewModel.ListViewModel
|
|
{
|
|
public class ServiceCategoryListVM : AbstractDCListMapperVM<ServiceCategoryDC, ServiceCategoryVM>
|
|
{
|
|
public ServiceCategoryListVM(List<ServiceCategoryDC> pList) : base(pList)
|
|
{
|
|
}
|
|
|
|
protected override Comparison<ServiceCategoryVM> Comparison
|
|
{
|
|
get { return Comparer.ServiceCategoryVMComparer; }
|
|
}
|
|
|
|
}
|
|
} |