Skip to content

Commit

Permalink
await fix
Browse files Browse the repository at this point in the history
  • Loading branch information
paullocknimble committed Nov 1, 2024
1 parent 5cf9135 commit 2ed0a37
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public async Task<CommandResult> Handle(CreateFormAMatProjectsCommand request,
{
// create formAMat
formAMat = FormAMatProject.Create(conversionProject.Details.NameOfTrust, conversionProject.Details.ApplicationReferenceNumber, _dateTimeProvider.Now);
_formAMatProjectRepository.CreateFormAMatProjectWithTrustReferenceNumber(formAMat);
await _formAMatProjectRepository.CreateFormAMatProjectWithTrustReferenceNumber(formAMat);
await _formAMatProjectRepository.UnitOfWork.SaveChangesAsync(cancellationToken);
}

Expand Down

0 comments on commit 2ed0a37

Please sign in to comment.