using DevExpress.Mvvm; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BeWo.ViewModel.ListViewModel { public abstract class AbstractListVM : AbstractDCListMapperVM where VMType : AbstractDCMapperVM where DCType : new() { public DelegateCommand AddVMCommand { get; set; } public DelegateCommand DeleteSelectedVMCommand { get; set; } public DelegateCommand CopySelectedVMCommand { get; set; } public AbstractListVM(IEnumerable pDCList) : base(pDCList) { } public AbstractListVM() : this(null) { } public bool PermissionManageVM { get; set; } } }