also commit this file
This commit is contained in:
parent
d8c2ecb88b
commit
546ce131e4
27
FarmmapsDownloadCL/DownloadCLService.cs
Normal file
27
FarmmapsDownloadCL/DownloadCLService.cs
Normal file
@ -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<DownloadCLService> _logger;
|
||||||
|
private readonly FarmmapsApiService _farmmapsApiService;
|
||||||
|
private readonly GeneralService _generalService;
|
||||||
|
|
||||||
|
public DownloadCLService(ILogger<DownloadCLService> logger, FarmmapsApiService farmmapsApiService,
|
||||||
|
GeneralService generalService)
|
||||||
|
{
|
||||||
|
_logger = logger;
|
||||||
|
_farmmapsApiService = farmmapsApiService;
|
||||||
|
_generalService = generalService;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user