-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'JB/TM-302-Endofyear-Remaining-Allowance-Finance-Breakdo…
…wn-WEB' into SH/TM-301-big-box-summary-available-allowance-on-finance-details-page
- Loading branch information
Showing
7 changed files
with
64 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
...EmployerFinance/Infrastructure/OuterApiRequests/Transfers/GetFinancialBreakdownRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
using SFA.DAS.EmployerFinance.Interfaces.OuterApi; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace SFA.DAS.EmployerFinance.Infrastructure.OuterApiRequests.Transfers | ||
{ | ||
public class GetFinancialBreakdownRequest : IGetApiRequest | ||
{ | ||
private readonly long _accountId; | ||
|
||
public GetFinancialBreakdownRequest(long accountId) | ||
{ | ||
_accountId = accountId; | ||
} | ||
|
||
public string GetUrl => $"Transfers/{_accountId}/transfers/financial-breakdown"; | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
...ployerFinance/Infrastructure/OuterApiResponses/Transfers/GetFinancialBreakdownResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace SFA.DAS.EmployerFinance.Infrastructure.OuterApiResponses.Transfers | ||
{ | ||
public class GetFinancialBreakdownResponse | ||
{ | ||
public long Commitments { get; set; } | ||
public long ApprovedPledgeApplications { get; set; } | ||
public long AcceptedPledgeApplications { get; set; } | ||
public long PledgeOriginatedCommitments { get; set; } | ||
public long TransferConnections { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters