forked from ddrilling/AsbCloudServer
12 lines
365 B
C#
12 lines
365 B
C#
using AsbCloudApp.Data;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AsbCloudApp.Services
|
|
{
|
|
public interface ITimezoneService
|
|
{
|
|
SimpleTimezoneDto GetByCoordinates(double latitude, double longitude);
|
|
Task<Data.SimpleTimezoneDto> GetByCoordinatesAsync(double latitude, double longitude, CancellationToken token);
|
|
}
|
|
} |