forked from FarmMaps/FarmMapsApiClient
29 lines
878 B
C#
29 lines
878 B
C#
|
using System;
|
||
|
using System.Globalization;
|
||
|
using System.Threading.Tasks;
|
||
|
using FarmmapsApi.Models;
|
||
|
using FarmmapsApi.Services;
|
||
|
using FarmmapsBulkSatDownload.Models;
|
||
|
using Microsoft.Extensions.Logging;
|
||
|
using static FarmmapsApi.Extensions;
|
||
|
using static FarmmapsApiSamples.Constants;
|
||
|
|
||
|
namespace FarmmapsBulkSatDownload
|
||
|
{
|
||
|
public class BulkSatDownloadService
|
||
|
{
|
||
|
private readonly ILogger<BulkSatDownloadService> _logger;
|
||
|
private readonly FarmmapsApiService _farmmapsApiService;
|
||
|
private readonly GeneralService _generalService;
|
||
|
|
||
|
public BulkSatDownloadService(ILogger<BulkSatDownloadService> logger, FarmmapsApiService farmmapsApiService,
|
||
|
GeneralService generalService)
|
||
|
{
|
||
|
_logger = logger;
|
||
|
_farmmapsApiService = farmmapsApiService;
|
||
|
_generalService = generalService;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|