Ejemplo n.º 1
0
 public ActionDirective(AHEntities.Action a, DateTime t)
 {
     action     = a;
     timeStamp  = t;
     duration   = TimeSpan.FromSeconds(0);
     actionLock = new object();
 }
Ejemplo n.º 2
0
 public ActionDirective(ActionDirective A2Clone)
 {
     action     = A2Clone.action;
     timeStamp  = A2Clone.TimeStamp;
     duration   = A2Clone.Duration;
     actionLock = new object();
 }
Ejemplo n.º 3
0
 public ActionDirective()
 {
     action     = AHEntities.Action.LEAVE;
     timeStamp  = DateTime.Now;
     duration   = new TimeSpan(0, 0, 1);
     actionLock = new object();
 }