* Fixed DTOs issues

* Added service to save data
This commit is contained in:
2025-08-28 14:50:46 +02:00
parent 23c26b4c65
commit 47f37d016d
13 changed files with 280 additions and 231 deletions

View File

@@ -8,35 +8,35 @@ namespace SytelineSaAppEfDataModel.Entities
{
public class EdiCustomerOrderLine
{
public string CustomerOrderNumber { get; set; }
public string? CustomerOrderNumber { get; set; }
public int CustomerOrderLine { get; set; }
public string Item { get; set; }
public string CustomerItemNumber { get; set; }
public string FeatStr { get; set; }
public string? Item { get; set; }
public string? CustomerItemNumber { get; set; }
public string? FeatStr { get; set; }
public decimal? BlanketQty { get; set; }
public DateTime? EffectiveDate { get; set; }
public DateTime? ExpirationDate { get; set; }
public decimal? ContPrice { get; set; }
public string Status { get; set; }
public string? Status { get; set; }
public DateTime? PromiseDate { get; set; }
public string PriceCode { get; set; }
public string Uom { get; set; }
public string? PriceCode { get; set; }
public string? Uom { get; set; }
public decimal? BlanketQtyReleased { get; set; }
public decimal? ContPriceReleased { get; set; }
public decimal? QtySent { get; set; }
public string SentCode { get; set; }
public string NonAppliedData { get; set; }
public string? SentCode { get; set; }
public string? NonAppliedData { get; set; }
public byte NoteExistsFlag { get; set; }
public DateTime RecordDate { get; set; }
public Guid RowPointer { get; set; }
public string Description { get; set; }
public string CreatedBy { get; set; }
public string UpdatedBy { get; set; }
public DateTime CreateDate { get; set; }
public string? Description { get; set; }
public string? CreatedBy { get; set; }
public string? UpdatedBy { get; set; }
public DateTime? CreateDate { get; set; }
public byte InWorkflow { get; set; }
public string BoxType { get; set; }
public string Address { get; set; }
public string FinalDestination { get; set; }
public string? BoxType { get; set; }
public string? Address { get; set; }
public string? FinalDestination { get; set; }
public int? QtyPerBox { get; set; }
}
}