* Translated Views

* Added UserName entity, dto and mapping
* Changed some Dtos to use BaseClass
This commit is contained in:
2025-01-29 17:42:42 +01:00
parent 6df1857246
commit c39cd3a473
8 changed files with 157 additions and 27 deletions

View File

@@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace SytelineSaAppEfDataModel.Dtos
{
public class EdiCustomerOrderLineDto
public class EdiCustomerOrderLineDto : DtoBase
{
public string CustomerOrderNumber { get; set; }
public int CustomerOrderLine { get; set; }
@@ -38,6 +38,8 @@ namespace SytelineSaAppEfDataModel.Dtos
public string Address { get; set; }
public string FinalDestination { get; set; }
public int? QtyPerBox { get; set; }
public string TranslatedStatus => TranslateStatus(Status);
public IEnumerable<EdiCustomerOrderLineItemDto> EdiCustomerOrderLineItems { get; set; }
}