Skip to content

Commit

Permalink
Fix - Ajout du handling du ProcessWithholding
Browse files Browse the repository at this point in the history
  • Loading branch information
noelmugnier committed Dec 9, 2020
1 parent dd52e83 commit 76453bd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
namespace Sheaft.Application.Handlers
{
public class WithholdingCommandsHandler : ResultsHandler,
IRequestHandler<CreateWithholdingCommand, Result<Guid>>
IRequestHandler<CreateWithholdingCommand, Result<Guid>>,
IRequestHandler<ProcessWithholdingsCommand, Result<bool>>,
IRequestHandler<ProcessWithholdingCommand, Result<TransactionStatus>>
{
private readonly IPspService _pspService;
private readonly PspOptions _pspOptions;
Expand Down
2 changes: 1 addition & 1 deletion Sheaft.Web.Manage/Views/Dashboard/Index.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
<div class="card-body">
<h5 class="card-title">Withholdings</h5>
<h6 class="card-subtitle mb-2 text-muted">@ViewBag.Withholdings</h6>
<a asp-controller="Payouts" asp-action="index" class="card-link">Show</a>
<a asp-controller="Withholdings" asp-action="index" class="card-link">Show</a>
</div>
</div>
<div class="card w-25 d-inline-block">
Expand Down

0 comments on commit 76453bd

Please sign in to comment.