using StructureHelper.Infrastructure; using StructureHelperLogics.NdmCalculations.Analyses; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StructureHelper.Windows.ViewModels { public interface ICRUDViewModel { TItem SelectedItem { get; set; } ObservableCollection Items { get; } RelayCommand Add { get; } RelayCommand Delete { get; } RelayCommand Edit { get; } RelayCommand Copy { get; } void AddItems(IEnumerable items); } }