* Added new Entities and Dtos

* Mapping new classes
* Added new services and Controllers in API
This commit is contained in:
2025-08-07 06:46:43 +02:00
parent 1842fd6146
commit 6139ce97d7
18 changed files with 855 additions and 6 deletions

View File

@@ -0,0 +1,41 @@
namespace SytelineSaAppEfDataModel.Dtos;
public class CustomerTpDto
{
public string CustNum { get; set; }
public int CustSeq { get; set; }
public bool UpdCustAddress { get; set; }
public string TpCode { get; set; }
public string DunsNum { get; set; }
public bool GenAck { get; set; }
public bool PaperAck { get; set; }
public bool GenAsn { get; set; }
public bool PaperAsn { get; set; }
public bool GenInv { get; set; }
public bool PaperInv { get; set; }
public string AutoPost { get; set; }
public bool PostPlanned { get; set; }
public string ReleaseProc { get; set; }
public bool PooledAsn { get; set; }
public bool ValPrice { get; set; }
public string UsePrice { get; set; }
public bool ValCredit { get; set; }
public string NoteProc { get; set; }
public string UseDate { get; set; }
public int? DateOffset { get; set; }
public string InvCode { get; set; }
public string AckCode { get; set; }
public string AsnCode { get; set; }
public DateTime? LastItemDate { get; set; }
public DateTime? LastCustaDate { get; set; }
public bool IncludeSerial { get; set; }
public bool NoteExistsFlag { get; set; }
public DateTime RecordDate { get; set; }
public Guid RowPointer { get; set; }
public string CreatedBy { get; set; }
public string UpdatedBy { get; set; }
public DateTime CreateDate { get; set; }
public bool InWorkflow { get; set; }
public string Uf_FKR_EDI_RSSBussFolder { get; set; }
public string Uf_FKR_EDI_IdentificationCode { get; set; }
}