modified application source files to fit library

This commit is contained in:
2022-07-02 14:35:54 -04:00
parent a333807c03
commit d73f21d7ac
4 changed files with 6 additions and 6 deletions

View File

@@ -1,4 +1,5 @@
using System.Collections.Generic;
using System.Linq;
using DeskHubSharpRevised.DAL;
using DeskHubSharpRevised.Models;
@@ -63,8 +64,6 @@ public class Request
public List<string> PerformGetSort()
{
Sort sort = new Sort();
var sortTerms = sort.GetSortTerms();
return sortTerms;
return new Sort().GetSortTerms;
}
}