Exemplo n.º 1
0
 public static async Task <TimeZone> GetTimeZoneOrDefault(this ITimeZoneService timeZoneService, string code)
 {
     if (string.IsNullOrEmpty(code))
     {
         return(await timeZoneService.GetDefaultTimeZone());
     }
     return(await timeZoneService.GetTimeZone(code) ?? await timeZoneService.GetDefaultTimeZone());
 }