Exemplo n.º 1
0
 public static HTime Map(HaystackTime value)
 {
     return(new HTime(value));
 }
Exemplo n.º 2
0
 public HTime(HaystackTime source)
 {
     Source = source;
 }
 public HaystackDateTime(HaystackDate date, HaystackTime time, HaystackTimeZone timeZone)
 {
     Value    = new DateTimeOffset(date.Value + time.Value, timeZone.TimeZoneInfo.BaseUtcOffset);
     TimeZone = timeZone;
 }
Exemplo n.º 4
0
 public HTime(TimeSpan time)
 {
     Source = new HaystackTime(time);
 }