ATMLModelLibrary.model.equipment.TestAdapterDescription1.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;
        }