public async Task <ActionResult> ConfirmOffer(string proposalId, string offerId) { var confirmOfferDto = new ConfirmOfferDto { ProposalId = proposalId, OfferId = offerId }; await _offerService.ConfirmOffer(confirmOfferDto); return(RedirectToAction("Proposals", "Customer")); }