using System.Collections.Generic; using System.Collections.ObjectModel; using System.Collections.Specialized; using DTS.Common.Base; using DTS.Common.Interface.TestDefinition; // ReSharper disable CheckNamespace namespace DTS.Common.Interface { public interface ITestSummaryListViewModel : IBaseViewModel { /// /// Gets the Shell View. /// ITestSummaryListView View { get; } ObservableCollection TestSummaryList { get; set; } List SelectedTestSummaryList { get; set; } void PublishSelectedTestSummaryList(); void TestSummaryList_CollectionChanged(object sender, NotifyCollectionChangedEventArgs e); } }