ATMLModelLibrary.model.common.TestConfiguration15.IsDeleted C# (CSharp) Method

IsDeleted() public method

public IsDeleted ( bool deleted = null ) : bool
deleted bool
return bool
        public bool IsDeleted( bool? deleted = null )
        {
            if (deleted != null)
                _deleted = deleted;
            return _deleted ?? false;
        }