public CallQueueCustomerNotesViewModel GetNotes(long callId, long callQueueCustomerId)
 {
     return(_outboundCallQueueService.GetCustomerNotes(callId, callQueueCustomerId));
 }
Ejemplo n.º 2
0
        public PartialViewResult GetCallHistoryDetails(long callId, long callQueueCustomerId)
        {
            var model = _outboundCallQueueService.GetCustomerNotes(callId, callQueueCustomerId);

            return(PartialView(model));
        }