From 546ce131e4537397eda7b55962155033ef6c9a76 Mon Sep 17 00:00:00 2001 From: Pepijn van Oort Date: Wed, 18 Oct 2023 17:33:32 +0200 Subject: [PATCH] also commit this file --- FarmmapsDownloadCL/DownloadCLService.cs | 27 +++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 FarmmapsDownloadCL/DownloadCLService.cs diff --git a/FarmmapsDownloadCL/DownloadCLService.cs b/FarmmapsDownloadCL/DownloadCLService.cs new file mode 100644 index 0000000..7441350 --- /dev/null +++ b/FarmmapsDownloadCL/DownloadCLService.cs @@ -0,0 +1,27 @@ +using System; +using System.Globalization; +using System.Threading.Tasks; +using FarmmapsApi.Models; +using FarmmapsApi.Services; +using FarmmapsDownloadCL.Models; +using Microsoft.Extensions.Logging; +using static FarmmapsApi.Extensions; +using static FarmmapsApiSamples.Constants; + +namespace FarmmapsDownloadCL +{ + public class DownloadCLService + { + private readonly ILogger _logger; + private readonly FarmmapsApiService _farmmapsApiService; + private readonly GeneralService _generalService; + + public DownloadCLService(ILogger logger, FarmmapsApiService farmmapsApiService, + GeneralService generalService) + { + _logger = logger; + _farmmapsApiService = farmmapsApiService; + _generalService = generalService; + } + } +} \ No newline at end of file