diff --git a/AIParkingApplication/ApiController.cs b/AIParkingApplication/ApiController.cs index 4cd738d..17d9891 100644 --- a/AIParkingApplication/ApiController.cs +++ b/AIParkingApplication/ApiController.cs @@ -28,7 +28,6 @@ namespace AIParkingApplication Dispose(); } - //TODO Old API public async Task Login(LoginModel loginData) { try @@ -73,23 +72,6 @@ namespace AIParkingApplication } } - public async void GetApiPathFromServer() - { - try - { - var request = new PlateRequestEngineModel - { - }; - HttpResponseMessage response = await httpClient.PostAsJsonAsync("/get-from-frame", request); - response.EnsureSuccessStatusCode(); - var ocrResult = await response.Content.ReadAsAsync(); - } - catch (Exception ex) - { - Console.WriteLine($"SendEngineRequest : {ex.Message}"); - } - } - public async Task CheckCard(string cardNumber) { try