ATMLModelLibrary.model.common.TestConfiguration15.IsDeleted C# (CSharp) 메소드

IsDeleted() 공개 메소드

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