using DTS.Common.Base; using Prism.Commands; using System.Collections.ObjectModel; namespace DTS.Common.Interface { public interface IPSDReportResultsViewModel : IBaseViewModel { /// /// Gets the Results View. /// IBaseView View { get; set; } IBaseViewModel Parent { get; set; } DelegateCommand ExportToPDFCommand { get; } DelegateCommand ExportToCSVCommand { get; } ObservableCollection Results { get; set; } } }