Skip to content

Commit

Permalink
Fixing typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
mmiddleton3301 committed May 20, 2021
1 parent fc9c99c commit 265ef04
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ namespace SFA.DAS.EmployerFinance.Web.Controllers
[DasAuthorize("EmployerFeature.TransfersMatching")]
[RoutePrefix("accounts/{HashedAccountId}")] public class TransfersController : Controller
{
private readonly TransfersOrcestrator _transfersOrcestrator;
private readonly TransfersOrchestrator _transfersOrcestrator;

public TransfersController(TransfersOrcestrator transfersOrcestrator)
public TransfersController(TransfersOrchestrator transfersOrchestrator)
{
_transfersOrcestrator = transfersOrcestrator;
_transfersOrcestrator = transfersOrchestrator;
}

[HttpGet]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@

namespace SFA.DAS.EmployerFinance.Web.Orchestrators
{
public class TransfersOrcestrator
public class TransfersOrchestrator
{
private readonly IAuthorizationService _authorizationService;

protected TransfersOrcestrator()
protected TransfersOrchestrator()
{

}

public TransfersOrcestrator(
public TransfersOrchestrator(
IAuthorizationService authorizationService)
{
_authorizationService = authorizationService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@
<Compile Include="NServiceBusStartup.cs" />
<Compile Include="OrchestratorResponse.cs" />
<Compile Include="Orchestrators\EmployerAccountTransactionsOrchestrator.cs" />
<Compile Include="Orchestrators\TransfersOrcestrator.cs" />
<Compile Include="Orchestrators\TransfersOrchestrator.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Startup.cs" />
<Compile Include="ViewModels\AprrenticeshipPaymentSummaryViewModel.cs" />
Expand Down

0 comments on commit 265ef04

Please sign in to comment.