/// <summary>
 /// List PrimaryCallTypes
 /// </summary>
 public void ListPrimaryCallTypes()
 {
     try
     {
         using (_callLogModel = new CallLogModel())
         {
             _view.PrimaryCallTypeList = _callLogModel.ListAllPrimaryCallTypesByCallType(_view.CallTypeId, _view.GeneralLog);
         }
     }
     catch (Exception ex)
     {
         Logger.Write(string.Format("An Error has ocurred while trying to List All PrimaryCallTypes.\n{0}\n{1}", ex.Message, ex.StackTrace));
         _view.DisplayMessage("An Internal Error has ocurred while trying to load the Information. Please try again.", false);
     }
 }