Beispiel #1
0
 public DoDTMF(GenericStep _step)
     : base()
 {
     DTMFStep = new GenericDTMFStep();
     DTMFStep = (GenericDTMFStep)_step;
     timeOut  = DTMFStep.TimeOut;
 }
Beispiel #2
0
        public override Object ToGeneric()
        {
            GenericDTMFStep temp = new GenericDTMFStep();

            temp.DTMFSignalType  = this.DTMFSignalType;
            temp.DTMFVal         = this.DTMFVal;
            temp.PauseBetweenTap = this.PauseBetweenTap;
            temp.TapDuration     = this.TapDuration;


            temp.NameId            = this.NameId;
            temp.TesterDestination = this.TesterDestination;
            temp.TesterSource      = this.TesterSource;
            temp.TimeOut           = this.TimeOut;
            temp.NumStep           = this.NumStep;

            return(temp);
        }