Ejemplo n.º 1
0
 public ActiveRing(PhoneNumberStruct source, PhoneNumberStruct destination, DateTime ringTime)
 {
     _phoneSource = source;
     _phoneDestination = destination;
     _ringTime = ringTime;
     _state = ActiveRingState.Ring;
 }
Ejemplo n.º 2
0
 public void SetStateAnswer(DateTime item)
 {
     _state = ActiveRingState.Talk;
     _ringTime = item;
 }