Applying same text modification in several lines

Remove identical text at the beginning of several lines and the closing parenthesis.

Input

Assert.ThrowsAsync(() => _auction.StartSellingItem());
Assert.ThrowsAsync(() => _application.StartBiddingIn(_auction));
Assert.ThrowsAsync(() => _auction.HasReceivedJoinRequestFromSniper());
Assert.ThrowsAsync(() => _auction.AnnounceClosed());
Assert.ThrowsAsync(() => _application.ShowsSniperHasLostAuction());

Output

_auction.StartSellingItem();
_application.StartBiddingIn(_auction);
_auction.HasReceivedJoinRequestFromSniper();
_auction.AnnounceClosed();
_application.ShowsSniperHasLostAuction();