auto.bus_api/Server/Services/DateTimeService.cs
cuqmbr 95028ed18b feat: many thing
- Database model
- Data transfer objects
- Country management controller
2022-10-10 20:34:09 +03:00

30 lines
805 B
C#

namespace Server.Services;
public class DateTimeService : IDateTimeService
{
private readonly IHttpContextAccessor _httpContextAccessor;
public DateTimeService(IHttpContextAccessor httpContextAccessor)
{
_httpContextAccessor = httpContextAccessor;
}
public bool TryToGetTimeZoneInfoFromCookie(out TimeZoneInfo? timeZoneInfo)
{
if (_httpContextAccessor.HttpContext == null)
{
timeZoneInfo = null;
return false;
}
if (!_httpContextAccessor.HttpContext.Request.Cookies.TryGetValue(
"timeZone", out string? timeZoneId))
{
timeZoneInfo = null;
return false;
}
timeZoneInfo = TimeZoneInfo.FindSystemTimeZoneById(timeZoneId!);
return true;
}
}