diff --git a/.vs/DeskHubSharp/v15/.suo b/.vs/DeskHubSharp/v15/.suo index 48d2187..14e42e6 100644 Binary files a/.vs/DeskHubSharp/v15/.suo and b/.vs/DeskHubSharp/v15/.suo differ diff --git a/.vs/DeskHubSharp/v15/Server/sqlite3/storage.ide b/.vs/DeskHubSharp/v15/Server/sqlite3/storage.ide index cf4c5ed..dada7b2 100644 Binary files a/.vs/DeskHubSharp/v15/Server/sqlite3/storage.ide and b/.vs/DeskHubSharp/v15/Server/sqlite3/storage.ide differ diff --git a/DeskHubSharp/BusinessLayer/Request.cs b/DeskHubSharp/BusinessLayer/Request.cs index dd918a2..fb77c74 100644 --- a/DeskHubSharp/BusinessLayer/Request.cs +++ b/DeskHubSharp/BusinessLayer/Request.cs @@ -12,7 +12,7 @@ namespace DeskHubSharp private string _query; /// - /// Constructor for the class + /// Override constructor for the class /// /// public Request(string query) @@ -21,6 +21,14 @@ namespace DeskHubSharp _api = new ApiDataService(_query); } + /// + /// Constructor for the class + /// + public Request() + { + + } + /// /// Performs the search request /// @@ -55,5 +63,12 @@ namespace DeskHubSharp return owner; } + public List PerformGetSort() + { + Sort sort = new Sort(); + var sortTerms = sort.GetSortTerms(); + return sortTerms; + } + } } diff --git a/DeskHubSharp/MainWindow.xaml b/DeskHubSharp/MainWindow.xaml index 7aa347b..02f4f32 100644 --- a/DeskHubSharp/MainWindow.xaml +++ b/DeskHubSharp/MainWindow.xaml @@ -28,7 +28,7 @@