75 lines
1.6 KiB
C#
75 lines
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DeskHubSharp
|
|
{
|
|
public class Request
|
|
{
|
|
private ApiDataService _api;
|
|
private string _query;
|
|
|
|
/// <summary>
|
|
/// Override constructor for the class
|
|
/// </summary>
|
|
/// <param name="query"></param>
|
|
public Request(string query)
|
|
{
|
|
_query = query;
|
|
_api = new ApiDataService(_query);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Constructor for the class
|
|
/// </summary>
|
|
public Request()
|
|
{
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// Performs the search request
|
|
/// </summary>
|
|
public void PerformSearchRequest()
|
|
{
|
|
_api.SearchRequest();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Performs the user request
|
|
/// </summary>
|
|
public void PerformUserRequest()
|
|
{
|
|
_api.UserRequest();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Performs the branch request
|
|
/// </summary>
|
|
public void PerformBranchRequest()
|
|
{
|
|
_api.BranchRequest();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Performs the local owner request
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public Owner GetUserData()
|
|
{
|
|
Owner owner = new Owner();
|
|
return owner;
|
|
}
|
|
|
|
public List<string> PerformGetSort()
|
|
{
|
|
Sort sort = new Sort();
|
|
var sortTerms = sort.GetSortTerms();
|
|
return sortTerms;
|
|
}
|
|
|
|
}
|
|
}
|