/// <summary>
 /// Binds the CallLogHistory Repeater
 /// </summary>
 public void BindCallLogHistory()
 {
     try
     {
         using (_callLogModel = new CallLogModel())
         {
             _view.CallLogHistory = _callLogModel.ListCallLogByIdList(_view.CallLogHistoryList);
         }
     }
     catch (Exception ex)
     {
         Logger.Write(string.Format("An Error has ocurred while trying to Bind the Call Log History.\n{0}\n{1}", ex.Message, ex.StackTrace));
         _view.DisplayMessage("An Internal Error has ocurred while trying to Bind the Call Log History. Please try again.", false);
     }
 }