protected virtual CallLog CreateCallLog() { var callLog = new Entities.CallLog() { CallType = eCallType.Conference, StartTime = ClientApp.Service.GetDateTime(), POId = this.ClientApp.Channels.PO.Id }; return(callLog); }
void INovaAlertService.SaveCallLog(Entities.CallLog en) { try { if (CheckConnection() == false) { throw new ServiceException(); } _realProxy.SaveCallLog(en); } catch (Exception ex) { OnException(ex); } }