Habanero.BO.ObjectTreeXmlReader.TryGetUpdatedExistingBo C# (CSharp) Method

TryGetUpdatedExistingBo() private method

private TryGetUpdatedExistingBo ( IBusinessObject bo ) : IBusinessObject
bo IBusinessObject
return IBusinessObject
        private IBusinessObject TryGetUpdatedExistingBo(IBusinessObject bo)
        {
            var existingBo = GetExistingBo(bo.ClassDef, bo);
            if (existingBo == null) return null;
            UpdateExistingBo(bo, existingBo);
            return existingBo;
        }