public async Task MyMethod1(
            IMyInterface dependency,
            CancellationToken cancellationToken)
        {
            await dependency.MyAsyncOperation1(cancellationToken);

            await dependency.MyAsyncOperation1(cancellationToken);
        }