implemented interface, cleaned up ApiDataService

This commit is contained in:
2022-06-30 17:44:06 -04:00
parent 9e900f983c
commit d2f735b2ef
3 changed files with 33 additions and 38 deletions

View File

@@ -6,7 +6,7 @@ using Newtonsoft.Json;
namespace DeskHubSharpRevised.DAL;
public class JsonDataService
public class JsonDataService : IDataService
{
private string _dataConfig;
@@ -67,4 +67,19 @@ public class JsonDataService
{
_dataConfig = dataFile;
}
public void SearchRequest()
{
throw new NotImplementedException();
}
public void UserRequest()
{
throw new NotImplementedException();
}
public void BranchRequest()
{
throw new NotImplementedException();
}
}