Fix compilation error in TestController

Change order.Total to order.TotalAmount to match model property.

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
SysAdmin 2025-09-27 07:44:03 +01:00
parent 849d4994de
commit 5bae87d5ec

View File

@ -199,7 +199,7 @@ public class TestController : ControllerBase
id = o.Id, id = o.Id,
identityReference = o.IdentityReference, identityReference = o.IdentityReference,
createdAt = o.CreatedAt, createdAt = o.CreatedAt,
total = o.Total total = o.TotalAmount
}) })
}); });
} }