<PackageReference Include="Relativity.Server.Testing.Framework.SDK" Version="5001.0.38" />

Relativity.Testing.Framework.Strategies.DeleteByIdStrategy<T>

public abstract class DeleteByIdStrategy<T> : IDeleteByIdStrategy<T>
Represents base strategy of entity deletion.
protected DeleteByIdStrategy()

public void Delete(int id)

Deletes the entity by ID. After the deletion removes entity from the current session with specified ID.

protected abstract void DoDelete(int id)

Does delete the entity by ID.