order by id fix
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Webshop.Application.DTOs.Customers;
|
||||
using Webshop.Domain.Entities;
|
||||
|
||||
|
||||
@@ -24,8 +25,9 @@ namespace Webshop.Application.DTOs.Orders
|
||||
public DateTimeOffset? DeliveredDate { get; set; }
|
||||
public PaymentStatus PaymentStatus { get; set; }
|
||||
public List<OrderItemDto> OrderItems { get; set; } = new List<OrderItemDto>();
|
||||
public Address ShippingAddress { get; set; } = default!; // << HINZUF<EFBFBD>GEN >>
|
||||
public Address BillingAddress { get; set; } = default!; // << HINZUF<EFBFBD>GEN >>
|
||||
public AddressDto ShippingAddress { get; set; } = default!; // << KORREKTUR: Typ zu AddressDto ge<67>ndert >>
|
||||
public AddressDto BillingAddress { get; set; } = default!; // << KORREKTUR: Typ zu AddressDto ge<67>ndert >>
|
||||
|
||||
public string PaymentMethod { get; set; } = string.Empty; // << HINZUF<55>GEN >>
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user