fix error

This commit is contained in:
2025-12-12 21:57:58 +01:00
parent 2fa74ccba8
commit 2a42e1010f

View File

@@ -28,7 +28,7 @@ public class UpdateQuotationEndpoint(
} }
quotation.ConditionsSale = req.ConditionsSale; quotation.ConditionsSale = req.ConditionsSale;
quotation.Message = req.Message; quotation.Message = req.Message;
await quotationsRepository.UpdateAsync(quotation, ct); await quotationsRepository.UpdateAsync(quotation, ct);
await Send.OkAsync(mapper.Map<GetQuotationDto>(quotation), ct); await Send.OkAsync(mapper.Map<GetQuotationDto>(quotation), ct);