order by id fix
This commit is contained in:
@@ -1,9 +1,6 @@
|
||||
// Auto-generiert von CreateWebshopFiles.ps1
|
||||
// src/Webshop.Application/DTOs/Customers/AddressDto.cs
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
|
||||
using Webshop.Domain.Enums;
|
||||
|
||||
namespace Webshop.Application.DTOs.Customers
|
||||
{
|
||||
@@ -16,5 +13,9 @@ namespace Webshop.Application.DTOs.Customers
|
||||
public string PostalCode { get; set; } = string.Empty;
|
||||
public string Country { get; set; } = string.Empty;
|
||||
public AddressType Type { get; set; }
|
||||
|
||||
// F<>gen Sie auch FirstName und LastName hinzu, falls diese in der Adresse gespeichert sind
|
||||
public string FirstName { get; set; } = string.Empty;
|
||||
public string LastName { get; set; } = string.Empty;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user