private void AcknowledgeOperationAndGoToFirst(OperationViewModel operation)
 {
     try
     {
         if (!operation.Operation.IsAcknowledged)
         {
             _service.AcknowledgeOperation(operation.Operation.Id);
         }
     }
     catch (Exception ex)
     {
         Logger.Instance.LogFormat(LogType.Error, this, Resources.AcknowledgeOperationFailed);
         Logger.Instance.LogException(this, ex);
     }
 }