private void BillTheCAllEvent(BillTheCallEventArgs e)
 {
     if (BillTheCAllEventHandler != null)
     {
         BillTheCAllEventHandler(this, e);
     }
 }
Beispiel #2
0
 public void BillTheCallEventHandler(object?sender, BillTheCallEventArgs e)
 {
     _extendedCallInfos.Add(new ExendetCallInfo(e.CallInfo, GetContractByPhoneNumber(e.CallInfo.InPhoneNumber).Tariff.PricePerMinute));
 }