protected virtual CallLog CreateCallLog()
        {
            var callLog = new Entities.CallLog()
            {
                CallType  = eCallType.Conference,
                StartTime = ClientApp.Service.GetDateTime(),
                POId      = this.ClientApp.Channels.PO.Id
            };

            return(callLog);
        }
示例#2
0
 void INovaAlertService.SaveCallLog(Entities.CallLog en)
 {
     try
     {
         if (CheckConnection() == false)
         {
             throw new ServiceException();
         }
         _realProxy.SaveCallLog(en);
     }
     catch (Exception ex)
     {
         OnException(ex);
     }
 }