public async Task MyMethod3(
            IMyInterface dependency,
            CancellationToken cancellationToken)
        {
            await dependency.MyAsyncOperation3(cancellationToken);

            await dependency.MyAsyncOperation3(cancellationToken);
        }