예제 #1
0
파일: ActiveRing.cs 프로젝트: choob207/Epam
 public ActiveRing(PhoneNumberStruct source, PhoneNumberStruct destination, DateTime ringTime)
 {
     _phoneSource = source;
     _phoneDestination = destination;
     _ringTime = ringTime;
     _state = ActiveRingState.Ring;
 }
예제 #2
0
파일: ActiveRing.cs 프로젝트: choob207/Epam
 public void SetStateAnswer(DateTime item)
 {
     _state = ActiveRingState.Talk;
     _ringTime = item;
 }