Add project files.

This commit is contained in:
pkus
2025-01-24 13:37:01 +01:00
parent ee70a3c8af
commit ed726eea09
94 changed files with 4591 additions and 0 deletions

View File

@@ -0,0 +1,125 @@
namespace SytelineSaAppEfDataModel.Dtos
{
public class CustomerOrderDto
{
public string Type { get; set; }
public string CoNum { get; set; }
public string EstNum { get; set; }
public string CustNum { get; set; }
public int CustSeq { get; set; }
public string Contact { get; set; }
public string Phone { get; set; }
public string CustPo { get; set; }
public DateTime OrderDate { get; set; }
public string TakenBy { get; set; }
public string TermsCode { get; set; }
public string ShipCode { get; set; }
public decimal? Price { get; set; }
public decimal? Weight { get; set; }
public short? QtyPackages { get; set; }
public decimal? Freight { get; set; }
public decimal? MiscCharges { get; set; }
public decimal? PrepaidAmt { get; set; }
public decimal? SalesTax { get; set; }
public string Stat { get; set; }
public decimal? Cost { get; set; }
public DateTime? CloseDate { get; set; }
public decimal? FreightT { get; set; }
public decimal? MChargesT { get; set; }
public decimal? PrepaidT { get; set; }
public decimal? SalesTaxT { get; set; }
public string Slsman { get; set; }
public DateTime? EffDate { get; set; }
public DateTime? ExpDate { get; set; }
public string Whse { get; set; }
public decimal? SalesTax2 { get; set; }
public decimal? SalesTaxT2 { get; set; }
public bool? EdiOrder { get; set; }
public string TransNat { get; set; }
public string ProcessInd { get; set; }
public string Delterm { get; set; }
public bool? UseExchRate { get; set; }
public string TaxCode1 { get; set; }
public string TaxCode2 { get; set; }
public string FrtTaxCode1 { get; set; }
public string FrtTaxCode2 { get; set; }
public string MscTaxCode1 { get; set; }
public string MscTaxCode2 { get; set; }
public string DiscountType { get; set; }
public decimal? DiscAmount { get; set; }
public decimal? Disc { get; set; }
public string Pricecode { get; set; }
public bool? ShipPartial { get; set; }
public bool? ShipEarly { get; set; }
public decimal? MatlCostT { get; set; }
public decimal? LbrCostT { get; set; }
public decimal? FovhdCostT { get; set; }
public decimal? VovhdCostT { get; set; }
public decimal? OutCostT { get; set; }
public string EndUserType { get; set; }
public decimal? ExchRate { get; set; }
public bool? FixedRate { get; set; }
public string OrigSite { get; set; }
public string LcrNum { get; set; }
public string EdiType { get; set; }
public bool? Invoiced { get; set; }
public bool? CreditHold { get; set; }
public DateTime? CreditHoldDate { get; set; }
public string CreditHoldReason { get; set; }
public string CreditHoldUser { get; set; }
public bool? SyncReqd { get; set; }
public DateTime? ProjectedDate { get; set; }
public string OrderSource { get; set; }
public string ConvertType { get; set; }
public bool? ApsPullUp { get; set; }
public bool? Consolidate { get; set; }
public string InvFreq { get; set; }
public bool? Summarize { get; set; }
public bool NoteExistsFlag { get; set; }
public DateTime RecordDate { get; set; }
public Guid RowPointer { get; set; }
public bool? Einvoice { get; set; }
public string Charfld1 { get; set; }
public string Charfld2 { get; set; }
public string Charfld3 { get; set; }
public DateTime? Datefld { get; set; }
public decimal? Decifld1 { get; set; }
public decimal? Decifld2 { get; set; }
public decimal? Decifld3 { get; set; }
public bool? Logifld { get; set; }
public string AckStat { get; set; }
public string ConfigId { get; set; }
public string CreatedBy { get; set; }
public string UpdatedBy { get; set; }
public DateTime CreateDate { get; set; }
public bool InWorkflow { get; set; }
public bool? IncludeTaxInPrice { get; set; }
public string TransNat2 { get; set; }
public string ApplyToInvNum { get; set; }
public string ExportType { get; set; }
public string ExternalConfirmationRef { get; set; }
public bool IsExternal { get; set; }
public string ProspectId { get; set; }
public string OppId { get; set; }
public string LeadId { get; set; }
public short? DaysShippedBeforeDueDateTolerance { get; set; }
public short? DaysShippedAfterDueDateTolerance { get; set; }
public decimal? ShippedOverOrderedQtyTolerance { get; set; }
public decimal? ShippedUnderOrderedQtyTolerance { get; set; }
public bool Consignment { get; set; }
public short? Priority { get; set; }
public string DemandingSite { get; set; }
public string DemandingSitePoNum { get; set; }
public string Uf_FKR_CoContract { get; set; }
public DateTime? Uf_BPX_DeliveryDate { get; set; }
public string Uf_FKR_EDI_CustName { get; set; }
public string Uf_FKR_EDI_Gate { get; set; }
public string Uf_FKR_EDI_RecipientCode { get; set; }
public string Uf_FKR_EDI_SellerCode { get; set; }
public string Uf_FKR_EDI_SenderCode { get; set; }
public string Uf_DocType { get; set; }
public string Uf_FKR_EDI_BuyerCode { get; set; }
public IEnumerable<CustomerOrderLineDto> CustomerOrderLines { get; set; } = new List<CustomerOrderLineDto>();
}
}

View File

@@ -0,0 +1,57 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SytelineSaAppEfDataModel.Dtos
{
public class CustomerOrderLineDto
{
public string CoNum { get; set; }
public short CoLine { get; set; }
public string Item { get; set; }
public string CustItem { get; set; }
public string FeatStr { get; set; }
public decimal BlanketQty { get; set; }
public DateTime? EffDate { get; set; }
public DateTime? ExpDate { get; set; }
public decimal? ContPrice { get; set; }
public string Stat { get; set; }
public DateTime? PromiseDate { get; set; }
public string Pricecode { get; set; }
public string UM { get; set; }
public decimal BlanketQtyConv { get; set; }
public decimal? ContPriceConv { get; set; }
public string ShipSite { get; set; }
public byte NoteExistsFlag { get; set; }
public DateTime RecordDate { get; set; }
public Guid RowPointer { get; set; }
public string Description { get; set; }
public string ConfigId { get; set; }
public string CreatedBy { get; set; }
public string UpdatedBy { get; set; }
public DateTime CreateDate { get; set; }
public byte InWorkflow { get; set; }
public byte PrintKitComponents { get; set; }
public string NonInvAcct { get; set; }
public string NonInvAcctUnit1 { get; set; }
public string NonInvAcctUnit2 { get; set; }
public string NonInvAcctUnit3 { get; set; }
public string NonInvAcctUnit4 { get; set; }
public decimal? CostConv { get; set; }
public short? DaysShippedBeforeDueDateTolerance { get; set; }
public short? DaysShippedAfterDueDateTolerance { get; set; }
public decimal? ShippedOverOrderedQtyTolerance { get; set; }
public decimal? ShippedUnderOrderedQtyTolerance { get; set; }
public string ManufacturerId { get; set; }
public string ManufacturerItem { get; set; }
public string Uf_FKR_EDI_BLN_Address { get; set; }
public string Uf_FKR_EDI_BLN_BoxType { get; set; }
public string Uf_FKR_EDI_BLN_FinalDestination { get; set; }
public int? Uf_FKR_EDI_BLN_QtyPerBox { get; set; }
public IEnumerable<CustomerOrderLineItemDto> CustomerOrderLineItems { get; set; } =
new List<CustomerOrderLineItemDto>();
}
}

View File

@@ -0,0 +1,138 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SytelineSaAppEfDataModel.Dtos
{
public class CustomerOrderLineItemDto
{
public string CoNum { get; set; }
public short CoLine { get; set; }
public short CoRelease { get; set; }
public string Item { get; set; }
public decimal QtyOrdered { get; set; }
public decimal QtyReady { get; set; }
public decimal QtyShipped { get; set; }
public decimal QtyPacked { get; set; }
public decimal Disc { get; set; }
public decimal Cost { get; set; }
public decimal Price { get; set; }
public string RefType { get; set; }
public string RefNum { get; set; }
public short? RefLineSuf { get; set; }
public short? RefRelease { get; set; }
public DateTime? DueDate { get; set; }
public DateTime? ShipDate { get; set; }
public decimal BrkQty1 { get; set; }
public decimal BrkQty2 { get; set; }
public decimal BrkQty3 { get; set; }
public decimal BrkQty4 { get; set; }
public decimal BrkQty5 { get; set; }
public byte Reprice { get; set; }
public string CustItem { get; set; }
public decimal QtyInvoiced { get; set; }
public decimal QtyReturned { get; set; }
public decimal CgsTotal { get; set; }
public string FeatStr { get; set; }
public string Stat { get; set; }
public string CustNum { get; set; }
public int CustSeq { get; set; }
public decimal? PrgBillTot { get; set; }
public decimal? PrgBillApp { get; set; }
public DateTime? ReleaseDate { get; set; }
public DateTime? PromiseDate { get; set; }
public string Whse { get; set; }
public string WksBasis { get; set; }
public decimal? WksValue { get; set; }
public string CommCode { get; set; }
public string TransNat { get; set; }
public string ProcessInd { get; set; }
public string Delterm { get; set; }
public decimal? UnitWeight { get; set; }
public string Origin { get; set; }
public int? ConsNum { get; set; }
public string TaxCode1 { get; set; }
public string TaxCode2 { get; set; }
public decimal? ExportValue { get; set; }
public string EcCode { get; set; }
public string Transport { get; set; }
public DateTime? PickDate { get; set; }
public string Pricecode { get; set; }
public string UM { get; set; }
public decimal QtyOrderedConv { get; set; }
public decimal PriceConv { get; set; }
public string CoCustNum { get; set; }
public byte? Packed { get; set; }
public byte? Bol { get; set; }
public decimal QtyRsvd { get; set; }
public decimal MatlCost { get; set; }
public decimal LbrCost { get; set; }
public decimal FovhdCost { get; set; }
public decimal VovhdCost { get; set; }
public decimal OutCost { get; set; }
public decimal CgsTotalMatl { get; set; }
public decimal CgsTotalLbr { get; set; }
public decimal CgsTotalFovhd { get; set; }
public decimal CgsTotalVovhd { get; set; }
public decimal CgsTotalOut { get; set; }
public decimal CostConv { get; set; }
public decimal MatlCostConv { get; set; }
public decimal LbrCostConv { get; set; }
public decimal FovhdCostConv { get; set; }
public decimal VovhdCostConv { get; set; }
public decimal OutCostConv { get; set; }
public string ShipSite { get; set; }
public byte? SyncReqd { get; set; }
public string CoOrigSite { get; set; }
public string CustPo { get; set; }
public string RmaNum { get; set; }
public short? RmaLine { get; set; }
public DateTime? ProjectedDate { get; set; }
public byte Consolidate { get; set; }
public string InvFreq { get; set; }
public byte Summarize { get; set; }
public byte NoteExistsFlag { get; set; }
public DateTime RecordDate { get; set; }
public Guid RowPointer { get; set; }
public string Description { get; set; }
public string ConfigId { get; set; }
public string CreatedBy { get; set; }
public string UpdatedBy { get; set; }
public DateTime CreateDate { get; set; }
public byte InWorkflow { get; set; }
public string TransNat2 { get; set; }
public decimal SupplQtyConvFactor { get; set; }
public byte PrintKitComponents { get; set; }
public string ExternalReservationRef { get; set; }
public string NonInvAcct { get; set; }
public string NonInvAcctUnit1 { get; set; }
public string NonInvAcctUnit2 { get; set; }
public string NonInvAcctUnit3 { get; set; }
public string NonInvAcctUnit4 { get; set; }
public short? DaysShippedBeforeDueDateTolerance { get; set; }
public short? DaysShippedAfterDueDateTolerance { get; set; }
public decimal? ShippedOverOrderedQtyTolerance { get; set; }
public decimal? ShippedUnderOrderedQtyTolerance { get; set; }
public short? Priority { get; set; }
public byte InvoiceHold { get; set; }
public string ManufacturerId { get; set; }
public string ManufacturerItem { get; set; }
public decimal QtyPicked { get; set; }
public string Uf_ZPL_VATRegisterCode { get; set; }
public Guid? Uf_FKR_EDI_EdiCoItemRowPointer { get; set; }
public short? Uf_IMP_CoLineOrginal { get; set; }
public decimal? Uf_IMP_QtyOrdered { get; set; }
public decimal? Uf_IMP_QtyOrginal { get; set; }
public byte? Uf_IMP_SplitCoLine { get; set; }
public byte? Uf_IMP_SplitCoLineChange { get; set; }
public string Uf_FKR_EDI_ITEM_DeliveryCallNum { get; set; }
public string Uf_FKR_EDI_ITEM_RoutingCode { get; set; }
public char? Uf_pci_code { get; set; }
public string Uf_LOC_11_UnloadingPoint { get; set; }
public string Uf_LOC_159_DestinationPoint { get; set; }
public string Uf_Status { get; set; }
public string Uf_FKR_EDI_ITEM_PalletCode { get; set; }
}
}

View File

@@ -0,0 +1,6 @@
namespace SytelineSaAppEfDataModel.Dtos
{
public class DtoBase
{
}
}

View File

@@ -0,0 +1,111 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SytelineSaAppEfDataModel.Dtos
{
public class EdiCustomerOrderLineItemDto
{
public string TransactionCode { get; set; }
public DateTime? ReceivedDate { get; set; }
public byte? Posted { get; set; }
public DateTime? PostedDate { get; set; }
public DateTime? ExtendedDate { get; set; }
public short? ErrorMessage { get; set; }
public byte? Override { get; set; }
public byte? Edi { get; set; }
public byte? Ack { get; set; }
public string AckNumber { get; set; }
public string AckType { get; set; }
public DateTime? AckDate { get; set; }
public string SymCustomerOrderNumber { get; set; }
public byte? QtyChanged { get; set; }
public byte? DateChanged { get; set; }
public byte? PriceChanged { get; set; }
public string CustomerOrderNumber { get; set; }
public int CustomerOrderLine { get; set; }
public int CustomerOrderRelease { get; set; }
public string Item { get; set; }
public decimal? QtyOrdered { get; set; }
public decimal? QtyReady { get; set; }
public decimal? QtyShipped { get; set; }
public decimal? QtyPacked { get; set; }
public decimal? Discount { get; set; }
public decimal? Cost { get; set; }
public decimal? Price { get; set; }
public string RefType { get; set; }
public string RefNumber { get; set; }
public short? RefLineSuf { get; set; }
public short? RefRelease { get; set; }
public DateTime? DueDate { get; set; }
public DateTime? ShipDate { get; set; }
public decimal? BrkQtyOne { get; set; }
public decimal? BrkQtyTwo { get; set; }
public decimal? BrkQtyThree { get; set; }
public decimal? BrkQtyFour { get; set; }
public decimal? BrkQtyFive { get; set; }
public byte? Reprice { get; set; }
public string CustomerItem { get; set; }
public decimal? QtyInvoiced { get; set; }
public decimal? QtyReturned { get; set; }
public decimal? CgsTotal { get; set; }
public string FeatStr { get; set; }
public string Status { get; set; }
public string CustomerNumber { get; set; }
public int? CustomerSequence { get; set; }
public decimal? PrgBillTot { get; set; }
public decimal? PrgBillApp { get; set; }
public DateTime? ReleaseDate { get; set; }
public DateTime? PromiseDate { get; set; }
public string Warehouse { get; set; }
public string WksBasis { get; set; }
public decimal? WksValue { get; set; }
public string CommCode { get; set; }
public string TransNat { get; set; }
public string ProcessInd { get; set; }
public string DelTerm { get; set; }
public decimal? UnitWeight { get; set; }
public string Origin { get; set; }
public int? ConsNumber { get; set; }
public string TaxCodeOne { get; set; }
public string TaxCodeTwo { get; set; }
public decimal? ExportValue { get; set; }
public string EcCode { get; set; }
public string Transport { get; set; }
public DateTime? PickupDate { get; set; }
public string PriceCode { get; set; }
public string Uom { get; set; }
public decimal? QtyOrderedReleased { get; set; }
public decimal? PriceReleased { get; set; }
public string CustomerOrderCustomerNumber { get; set; }
public byte? Packed { get; set; }
public byte? Bol { get; set; }
public decimal? QtyBco { get; set; }
public string BcoCode { get; set; }
public string ExternalRef { get; set; }
public string CustomerPoNumber { get; set; }
public string NonApplyData { 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 byte InWorkflow { get; set; }
public string TransNatTwo { get; set; }
public decimal SupplyQtyConvFactor { get; set; }
public string UfFkrEdiAddIntDest { get; set; }
public string UfFkrEdiCustPoLineNum { get; set; }
public string UfFkrEdiPlaceOrPortDischarge { get; set; }
public string RoutingCode { get; set; }
public string DeliveryCallNumber { get; set; }
public string UnloadingPoint { get; set; }
public string DestinationPoint { get; set; }
public string NewStatus { get; set; }
public string PalletCode { get; set; }
public string PalletNumber { get; set; }
}
}

View File

@@ -0,0 +1,108 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SytelineSaAppEfDataModel.Dtos
{
public class EdiCustomerOrderDto : DtoBase
{
public string TransactionCode { get; set; }
public string TpCode { get; set; }
public DateTime? RecivedDate { get; set; }
public byte? Posted { get; set; }
public DateTime? PostedDate { get; set; }
public DateTime? ExtendedDate { get; set; }
public short? ErrorMessage { get; set; }
public byte? Override { get; set; }
public byte? Ack { get; set; }
public string AckNumber { get; set; }
public int? AckSequence { get; set; }
public string AckType { get; set; }
public DateTime? AckDate { get; set; }
public string SymbolicCustomerOrderNumber { get; set; }
public decimal? BlanketDollar { get; set; }
public string Type { get; set; }
public string CustomerOrderNumber { get; set; }
public string EstimatedNumber { get; set; }
public string CustomerNumber { get; set; }
public int? CustomerSequence { get; set; }
public string Contact { get; set; }
public string Phone { get; set; }
public string CustomerPoNumber { get; set; }
public DateTime? OrderDate { get; set; }
public string TakenBy { get; set; }
public string TermsCode { get; set; }
public string ShipCode { get; set; }
public decimal? Price { get; set; }
public decimal? Weight { get; set; }
public short? QtyPackages { get; set; }
public decimal? Freight { get; set; }
public decimal? MiscCharges { get; set; }
public decimal? PrepaidAmount { get; set; }
public decimal? SalesTax { get; set; }
public string Status { get; set; }
public decimal? Cost { get; set; }
public DateTime? CloseDate { get; set; }
public decimal? FreightT { get; set; }
public decimal? MchargesT { get; set; }
public decimal? PrepaidT { get; set; }
public decimal? SalesTaxT { get; set; }
public string Salesman { get; set; }
public DateTime? EffectiveDate { get; set; }
public DateTime? ExpirationDate { get; set; }
public string Warehouse { get; set; }
public decimal? SalesTaxTwo { get; set; }
public decimal? SalesTaxTwoT { get; set; }
public string CharFieldOne { get; set; }
public string CharFieldTwo { get; set; }
public string CharFieldThree { get; set; }
public DateTime? DateField { get; set; }
public decimal? DecimalFieldOne { get; set; }
public decimal? DecimalFieldTwo { get; set; }
public decimal? DecimalFieldThree { get; set; }
public byte? LogiField { get; set; }
public byte? EdiOrder { get; set; }
public string TransactionNat { get; set; }
public string ProcessInd { get; set; }
public string DelTerm { get; set; }
public byte? UseExchangeRate { get; set; }
public string TaxCodeOne { get; set; }
public string TaxCodeTwo { get; set; }
public string FreightTaxCodeOne { get; set; }
public string FreightTaxCodeTwo { get; set; }
public string MscTaxCodeOne { get; set; }
public string MscTaxCodeTwo { get; set; }
public decimal? Discount { get; set; }
public string PriceCode { get; set; }
public byte? ShipPartial { get; set; }
public byte? ShipEarly { get; set; }
public string NonApplyData { get; set; }
public byte 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 byte InWorkflow { get; set; }
public string DiscountType { get; set; }
public decimal? DiscountAmount { get; set; }
public string TransNatTwo { get; set; }
public string UfFkrEdiMessageRefNum { get; set; }
public string UfFkrEdiConsigneeAddress { get; set; }
public string UfFkrEdiConsigneeName { get; set; }
public string UfFkrEdiFileName { get; set; }
public string UfFkrEdiBuyerDunsNumber { get; set; }
public string Gate { get; set; }
public string CustomerName { get; set; }
public string RecipientCode { get; set; }
public string SenderCode { get; set; }
public string SellerCode { get; set; }
public string DocType { get; set; }
public string BuyerCode { get; set; }
public IEnumerable<EdiCustomerOrderLineDto> EdiCustomerOrderLines { get; set; } = new List<EdiCustomerOrderLineDto>();
public IEnumerable<EdiCustomerOrderTranslateDto> EdiCustomerOrderTranslates { get; set; } = new List<EdiCustomerOrderTranslateDto>();
}
}

View File

@@ -0,0 +1,44 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SytelineSaAppEfDataModel.Dtos
{
public class EdiCustomerOrderLineDto
{
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 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 DateTime? PromiseDate { 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 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 byte InWorkflow { get; set; }
public string BoxType { get; set; }
public string Address { get; set; }
public string FinalDestination { get; set; }
public int? QtyPerBox { get; set; }
public IEnumerable<EdiCustomerOrderLineItemDto> EdiCustomerOrderLineItems { get; set; }
}
}

View File

@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SytelineSaAppEfDataModel.Dtos
{
public class EdiCustomerOrderTranslateDto
{
public int Id { get; set; }
public byte CoEdiOrder { get; set; }
public Guid CoRowPointer { get; set; }
public string CoCoNum { get; set; }
public string CoType { get; set; }
public string CoTakenBy { get; set; }
public string EdiCoCoNum { get; set; }
public int OrdersCount { get; set; }
public bool OrderFound { get; set; }
public DateTime CreatedDate { get; set; }
public string FoundNumbers { get; set; }
public int ScheduleOrderId { get; set; }
}
}

View File

@@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SytelineSaAppEfDataModel.Dtos
{
public class ErrorLogDto
{
public string TrxNum { get; set; }
public short Seq { get; set; }
public int LineNum { get; set; }
public int ReleaseNum { get; set; }
public DateTime? ErrDate { get; set; }
public short? ErrNum { get; set; }
public string ErrMsg { get; set; }
public string TrxCode { 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; }
}
}