Exemple #1
0
 public ScheduledTime(EventTimeEnums Base, TimeSpan Offset)
 {
     this._Base   = Base;
     this._Offset = Offset;
 }
Exemple #2
0
 public ScheduledTime(string StrBase, string StrOffset)
 {
     this._Base = (EventTimeEnums)Enum.Parse(typeof(EventTimeEnums), StrBase, true);
     this.Init(StrOffset);
 }