Skip to content

Commit

Permalink
format issue in connector businesslogic solved
Browse files Browse the repository at this point in the history
  • Loading branch information
AnuragNagpure committed Oct 15, 2024
1 parent 1150681 commit c1559a4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ private async Task ValidateTechnicalUser(Guid? technicalUserId, Guid companyId)
if (!await portalRepositories.GetInstance<ITechnicalUserRepository>()
.CheckActiveServiceAccountExistsForCompanyAsync(technicalUserId.Value, companyId).ConfigureAwait(ConfigureAwaitOptions.None))
{
throw ControllerArgumentException.Create(AdministrationConnectorErrors.CONNECTOR_ARGUMENT_TECH_USER_NOT_ACTIVE, [new ErrorParameter("technicalUserId", technicalUserId.Value.ToString()), new ErrorParameter("companyId", companyId.ToString())]);
throw ControllerArgumentException.Create(AdministrationConnectorErrors.CONNECTOR_ARGUMENT_TECH_USER_NOT_ACTIVE, [new ErrorParameter("technicalUserId", technicalUserId.Value.ToString()), new ErrorParameter("companyId", companyId.ToString())]);
}
}

Expand Down

0 comments on commit c1559a4

Please sign in to comment.