2022-01-05 17:50:45 +05:00
|
|
|
|
using AsbCloudApp.Data;
|
2021-11-22 11:30:08 +05:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Services
|
|
|
|
|
{
|
2022-01-05 17:50:45 +05:00
|
|
|
|
public interface ITimezoneService
|
2021-11-22 11:30:08 +05:00
|
|
|
|
{
|
2022-01-05 17:50:45 +05:00
|
|
|
|
SimpleTimezoneDto GetByCoordinates(double latitude, double longitude);
|
|
|
|
|
Task<Data.SimpleTimezoneDto> GetByCoordinatesAsync(double latitude, double longitude, CancellationToken token);
|
2021-11-22 11:30:08 +05:00
|
|
|
|
}
|
|
|
|
|
}
|