Generate SytelineSaAppDataModel
This commit is contained in:
7
FA.sln
7
FA.sln
@@ -11,6 +11,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FaKrosnoDataModel", "FaKros
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClientEdiOrdersGenerator", "ClientEdiOrdersGenerator\ClientEdiOrdersGenerator.csproj", "{DE05DFC7-A9B7-4FD0-ADD6-705DE2BAF5FD}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SytelineSaAppDataModel", "SytelineSaAppDataModel\SytelineSaAppDataModel.csproj", "{776570D9-F7D3-449D-8667-F436DB1468D8}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
@@ -29,12 +31,17 @@ Global
|
||||
{DE05DFC7-A9B7-4FD0-ADD6-705DE2BAF5FD}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{DE05DFC7-A9B7-4FD0-ADD6-705DE2BAF5FD}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{DE05DFC7-A9B7-4FD0-ADD6-705DE2BAF5FD}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{776570D9-F7D3-449D-8667-F436DB1468D8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{776570D9-F7D3-449D-8667-F436DB1468D8}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{776570D9-F7D3-449D-8667-F436DB1468D8}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{776570D9-F7D3-449D-8667-F436DB1468D8}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(NestedProjects) = preSolution
|
||||
{6A95691D-DA87-4164-B030-47095788EEA2} = {63C122C9-D1DE-45CB-9A71-0196444C50B3}
|
||||
{776570D9-F7D3-449D-8667-F436DB1468D8} = {63C122C9-D1DE-45CB-9A71-0196444C50B3}
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {5510D1A6-B22F-4C3D-9EA8-66F1676CF7D5}
|
||||
|
||||
18
SytelineSaAppDataModel/App.config
Normal file
18
SytelineSaAppDataModel/App.config
Normal file
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<configSections>
|
||||
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
|
||||
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
|
||||
</configSections>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.1" />
|
||||
</startup>
|
||||
<entityFramework>
|
||||
<providers>
|
||||
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
|
||||
</providers>
|
||||
</entityFramework>
|
||||
<connectionStrings>
|
||||
<add name="SytelineSaAppDataContext" connectionString="data source=192.168.0.7;initial catalog=SL_PRODTEST_SA_APP;integrated security=True;MultipleActiveResultSets=True;App=EntityFramework" providerName="System.Data.SqlClient" />
|
||||
</connectionStrings>
|
||||
</configuration>
|
||||
313
SytelineSaAppDataModel/EdiCustomerOrder.cs
Normal file
313
SytelineSaAppDataModel/EdiCustomerOrder.cs
Normal file
@@ -0,0 +1,313 @@
|
||||
namespace SytelineSaAppDataModel
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.Data.Entity.Spatial;
|
||||
|
||||
[Table("edi_co")]
|
||||
public partial class EdiCustomerOrder
|
||||
{
|
||||
[StringLength(8)]
|
||||
[Column("trx_code")]
|
||||
public string TransactionCode { get; set; }
|
||||
|
||||
[StringLength(40)]
|
||||
[Column("tp_code")]
|
||||
public string TpCode { get; set; }
|
||||
|
||||
[Column("recv_date")]
|
||||
public DateTime? RecivedDate { get; set; }
|
||||
|
||||
[Column("posted")]
|
||||
public byte? Posted { get; set; }
|
||||
|
||||
[Column("post_date")]
|
||||
public DateTime? PostedDate { get; set; }
|
||||
|
||||
[Column("ext_date")]
|
||||
public DateTime? ExtendedDate { get; set; }
|
||||
|
||||
[Column("errmsg")]
|
||||
public short? ErrorMessage { get; set; }
|
||||
|
||||
[Column("override")]
|
||||
public byte? Override { get; set; }
|
||||
|
||||
[Column("ack")]
|
||||
public byte? Ack { get; set; }
|
||||
|
||||
[StringLength(7)]
|
||||
[Column("ack_num")]
|
||||
public string AckNumber { get; set; }
|
||||
|
||||
[Column("ack_seq")]
|
||||
public int? AckSequence { get; set; }
|
||||
|
||||
[StringLength(2)]
|
||||
[Column("ack_type")]
|
||||
public string AckType { get; set; }
|
||||
|
||||
[Column("ack_date")]
|
||||
public DateTime? AckDate { get; set; }
|
||||
|
||||
[StringLength(10)]
|
||||
[Column("sym_co_num")]
|
||||
public string SymbolicCustomerOrderNumber { get; set; }
|
||||
|
||||
[Column("blnkt_dollar")]
|
||||
public decimal? BlanketDollar { get; set; }
|
||||
|
||||
[StringLength(1)]
|
||||
[Column("type")]
|
||||
public string Type { get; set; }
|
||||
|
||||
[Key]
|
||||
[StringLength(10)]
|
||||
[Column("co_num")]
|
||||
public string CustomerOrderNumber { get; set; }
|
||||
|
||||
[StringLength(10)]
|
||||
[Column("est_num")]
|
||||
public string EstimatedNumber { get; set; }
|
||||
|
||||
[StringLength(7)]
|
||||
[Column("cust_num")]
|
||||
public string CustomerNumber { get; set; }
|
||||
|
||||
[Column("cust_seq")]
|
||||
public int? CustomerSequence { get; set; }
|
||||
|
||||
[StringLength(30)]
|
||||
[Column("contact")]
|
||||
public string Contact { get; set; }
|
||||
|
||||
[StringLength(25)]
|
||||
[Column("phone")]
|
||||
public string Phone { get; set; }
|
||||
|
||||
[StringLength(22)]
|
||||
[Column("cust_po")]
|
||||
public string CustomerPoNumber { get; set; }
|
||||
|
||||
[Column("order_date")]
|
||||
public DateTime? OrderDate { get; set; }
|
||||
|
||||
[StringLength(15)]
|
||||
[Column("taken_by")]
|
||||
public string TakenBy { get; set; }
|
||||
|
||||
[StringLength(3)]
|
||||
[Column("terms_code")]
|
||||
public string TermsCode { get; set; }
|
||||
|
||||
[StringLength(4)]
|
||||
[Column("ship_code")]
|
||||
public string ShipCode { get; set; }
|
||||
|
||||
[Column("price")]
|
||||
public decimal? Price { get; set; }
|
||||
|
||||
[Column("weight")]
|
||||
public decimal? Weight { get; set; }
|
||||
|
||||
[Column("qty_packages")]
|
||||
public short? QtyPackages { get; set; }
|
||||
|
||||
[Column("freight")]
|
||||
public decimal? Freight { get; set; }
|
||||
|
||||
[Column("misc_charges")]
|
||||
public decimal? MiscCharges { get; set; }
|
||||
|
||||
[Column("prepaid_amt")]
|
||||
public decimal? PrepaidAmount { get; set; }
|
||||
|
||||
[Column("sales_tax")]
|
||||
public decimal? SalesTax { get; set; }
|
||||
|
||||
[StringLength(1)]
|
||||
[Column("stat")]
|
||||
public string Status { get; set; }
|
||||
|
||||
[Column("cost")]
|
||||
public decimal? Cost { get; set; }
|
||||
|
||||
[Column("close_date")]
|
||||
public DateTime? CloseDate { get; set; }
|
||||
|
||||
[Column("freight_t")]
|
||||
public decimal? FreightT { get; set; }
|
||||
|
||||
[Column("m_charges_t")]
|
||||
public decimal? MchargesT { get; set; }
|
||||
|
||||
[Column("prepaid_t")]
|
||||
public decimal? PrepaidT { get; set; }
|
||||
|
||||
[Column("sales_tax_t")]
|
||||
public decimal? SalesTaxT { get; set; }
|
||||
|
||||
[StringLength(8)]
|
||||
[Column("slsman")]
|
||||
public string SalesMan { get; set; }
|
||||
|
||||
[Column("eff_date")]
|
||||
public DateTime? EffectiveDate { get; set; }
|
||||
|
||||
[Column("exp_date")]
|
||||
public DateTime? ExpirationDate { get; set; }
|
||||
|
||||
[StringLength(4)]
|
||||
[Column("whse")]
|
||||
public string Warehouse { get; set; }
|
||||
|
||||
[Column("sales_tax_2")]
|
||||
public decimal? SalesTaxTwo { get; set; }
|
||||
|
||||
[Column("sales_tax_t2")]
|
||||
public decimal? SalesTaxTwoT { get; set; }
|
||||
|
||||
[StringLength(20)]
|
||||
[Column("charfld1")]
|
||||
public string CharFieldOne { get; set; }
|
||||
|
||||
[StringLength(20)]
|
||||
[Column("charfld2")]
|
||||
public string CharFieldTwo { get; set; }
|
||||
|
||||
[StringLength(20)]
|
||||
[Column("charfld3")]
|
||||
public string CharFieldThree { get; set; }
|
||||
|
||||
[Column("datefld")]
|
||||
public DateTime? DateField { get; set; }
|
||||
|
||||
[Column("decifld1")]
|
||||
public decimal? DecimalFieldOne { get; set; }
|
||||
|
||||
[Column("decifld2")]
|
||||
public decimal? DecimalFieldTwo { get; set; }
|
||||
|
||||
[Column("decifld3")]
|
||||
public decimal? DecimailFieldThree { get; set; }
|
||||
|
||||
[Column("logifld")]
|
||||
public byte? LogiField { get; set; }
|
||||
|
||||
[Column("edi_order")]
|
||||
public byte? EdiOrder { get; set; }
|
||||
|
||||
[StringLength(2)]
|
||||
[Column("trans_nat")]
|
||||
public string TransactionNat { get; set; }
|
||||
|
||||
[StringLength(1)]
|
||||
[Column("process_ind")]
|
||||
public string ProcessInd { get; set; }
|
||||
|
||||
[StringLength(4)]
|
||||
[Column("delterm")]
|
||||
public string DelTerm { get; set; }
|
||||
|
||||
[Column("use_exch_rate")]
|
||||
public byte? UseExchangeRate { get; set; }
|
||||
|
||||
[StringLength(6)]
|
||||
[Column("tax_code1")]
|
||||
public string TaxCodeOne { get; set; }
|
||||
|
||||
[StringLength(6)]
|
||||
[Column("tax_code2")]
|
||||
public string TaxCodeTwo { get; set; }
|
||||
|
||||
[StringLength(6)]
|
||||
[Column("frt_tax_code1")]
|
||||
public string FreightTaxCodeOne { get; set; }
|
||||
|
||||
[StringLength(6)]
|
||||
[Column("frt_tax_code2")]
|
||||
public string FreightTaxCodeTwo { get; set; }
|
||||
|
||||
[StringLength(6)]
|
||||
[Column("msc_tax_code1")]
|
||||
public string MscTaxCodeOne { get; set; }
|
||||
|
||||
[StringLength(6)]
|
||||
[Column("msc_tax_code2")]
|
||||
public string MscTaxCodeTwo { get; set; }
|
||||
|
||||
[Column("disc")]
|
||||
public decimal? Discount { get; set; }
|
||||
|
||||
[StringLength(3)]
|
||||
[Column("pricecode")]
|
||||
public string PriceCode { get; set; }
|
||||
|
||||
[Column("ship_partial")]
|
||||
public byte? ShipPartial { get; set; }
|
||||
|
||||
[Column("ship_early")]
|
||||
public byte? ShipEarly { get; set; }
|
||||
|
||||
[StringLength(75)]
|
||||
[Column("non_appl_data")]
|
||||
public string NonApplyData { get; set; }
|
||||
|
||||
[Column("NoteExistsFlag")]
|
||||
public byte NoteExistsFlag { get; set; }
|
||||
|
||||
[Column("RecordDate")]
|
||||
public DateTime RecordDate { get; set; }
|
||||
|
||||
[Column("RowPointer")]
|
||||
public Guid RowPointer { get; set; }
|
||||
|
||||
[Required]
|
||||
[StringLength(30)]
|
||||
[Column("CreatedBy")]
|
||||
public string CreatedBy { get; set; }
|
||||
|
||||
[Required]
|
||||
[StringLength(30)]
|
||||
[Column("UpdatedBy")]
|
||||
public string UpdatedBy { get; set; }
|
||||
|
||||
[Column("CreateDate")]
|
||||
public DateTime CreateDate { get; set; }
|
||||
|
||||
[Column("InWorkflow")]
|
||||
public byte InWorkflow { get; set; }
|
||||
|
||||
[StringLength(1)]
|
||||
[Column("discount_type")]
|
||||
public string DiscountType { get; set; }
|
||||
|
||||
[Column("disc_amount")]
|
||||
public decimal? DiscountAmount { get; set; }
|
||||
|
||||
[StringLength(2)]
|
||||
[Column("trans_nat_2")]
|
||||
public string TransNatTwo { get; set; }
|
||||
|
||||
[StringLength(35)]
|
||||
[Column("uf_FKR_EDI_MessageRefNum")]
|
||||
public string UfFkrEdiMessageRefNum { get; set; }
|
||||
|
||||
[StringLength(35)]
|
||||
[Column("Uf_FKR_EDI_ConsigneeAddress")]
|
||||
public string UfFkrEdiConsigneeAddress { get; set; }
|
||||
|
||||
[StringLength(35)]
|
||||
[Column("Uf_FKR_EDI_ConsigneeName")]
|
||||
public string UfFkrEdiConsigneeName { get; set; }
|
||||
|
||||
[Column("Uf_FKR_EDI_FileName")]
|
||||
public string UfFkrEdiFileName { get; set; }
|
||||
|
||||
[StringLength(35)]
|
||||
[Column("uf_FKR_EDI_BuyerDunsNumber")]
|
||||
public string UfFkrEdiBuyerDunsNumber { get; set; }
|
||||
}
|
||||
}
|
||||
107
SytelineSaAppDataModel/EdiCustomerOrderLine.cs
Normal file
107
SytelineSaAppDataModel/EdiCustomerOrderLine.cs
Normal file
@@ -0,0 +1,107 @@
|
||||
namespace SytelineSaAppDataModel
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.Data.Entity.Spatial;
|
||||
|
||||
[Table("edi_cobln")]
|
||||
public partial class EdiCustomerOrderLine
|
||||
{
|
||||
[Key]
|
||||
[Column("co_num", Order = 0)]
|
||||
[StringLength(10)]
|
||||
public string CustomerOrderNumber { get; set; }
|
||||
|
||||
[Key]
|
||||
[Column("co_line", Order = 1)]
|
||||
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
||||
public short CustomerOrderLine { get; set; }
|
||||
|
||||
[StringLength(30)]
|
||||
[Column("item")]
|
||||
public string Item { get; set; }
|
||||
|
||||
[StringLength(30)]
|
||||
[Column("cust_item")]
|
||||
public string CustomerItemNumber { get; set; }
|
||||
|
||||
[StringLength(40)]
|
||||
[Column("feat_str")]
|
||||
public string FeatStr { get; set; }
|
||||
|
||||
[Column("blanket_qty")]
|
||||
public decimal? BlanketQty { get; set; }
|
||||
|
||||
[Column("eff_date")]
|
||||
public DateTime? EffectiveDate { get; set; }
|
||||
|
||||
[Column("exp_date")]
|
||||
public DateTime? ExpirationDate { get; set; }
|
||||
|
||||
[Column("cont_price")]
|
||||
public decimal? ContPrice { get; set; }
|
||||
|
||||
[StringLength(1)]
|
||||
[Column("stat")]
|
||||
public string Status { get; set; }
|
||||
|
||||
[Column("promise_date")]
|
||||
public DateTime? PromiseDate { get; set; }
|
||||
|
||||
[StringLength(3)]
|
||||
[Column("pricecode")]
|
||||
public string PriceCode { get; set; }
|
||||
|
||||
[StringLength(3)]
|
||||
[Column("u_m")]
|
||||
public string Uom { get; set; }
|
||||
|
||||
[Column("blanket_qty_conv")]
|
||||
public decimal? BlanketQtyReleased { get; set; }
|
||||
|
||||
[Column("cont_price_conv")]
|
||||
public decimal? ContPriceReleased { get; set; }
|
||||
|
||||
[Column("qty_bco")]
|
||||
public decimal? QtySent { get; set; }
|
||||
|
||||
[StringLength(1)]
|
||||
[Column("bco_code")]
|
||||
public string SentCode { get; set; }
|
||||
|
||||
[StringLength(75)]
|
||||
[Column("non_appl_data")]
|
||||
public string NonAppliedData { get; set; }
|
||||
|
||||
[Column("NoteExistsFlag")]
|
||||
public byte NoteExistsFlag { get; set; }
|
||||
|
||||
[Column("RecordDate")]
|
||||
public DateTime RecordDate { get; set; }
|
||||
|
||||
[Column("RowPointer")]
|
||||
public Guid RowPointer { get; set; }
|
||||
|
||||
[StringLength(40)]
|
||||
[Column("description")]
|
||||
public string Description { get; set; }
|
||||
|
||||
[Required]
|
||||
[StringLength(30)]
|
||||
[Column("CreatedBy")]
|
||||
public string CreatedBy { get; set; }
|
||||
|
||||
[Required]
|
||||
[StringLength(30)]
|
||||
[Column("UpdatedBy")]
|
||||
public string UpdatedBy { get; set; }
|
||||
|
||||
[Column("CreateDate")]
|
||||
public DateTime CreateDate { get; set; }
|
||||
|
||||
[Column("InWorkflow")]
|
||||
public byte InWorkflow { get; set; }
|
||||
}
|
||||
}
|
||||
334
SytelineSaAppDataModel/EdiCustomerOrderLineItem.cs
Normal file
334
SytelineSaAppDataModel/EdiCustomerOrderLineItem.cs
Normal file
@@ -0,0 +1,334 @@
|
||||
namespace SytelineSaAppDataModel
|
||||
{
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.Data.Entity.Spatial;
|
||||
|
||||
|
||||
[Table("edi_coitem")]
|
||||
public partial class EdiCustomerOrderLineItem
|
||||
{
|
||||
[StringLength(8)]
|
||||
[Column("trx_code")]
|
||||
public string TransactionCode { get; set; }
|
||||
|
||||
[Column("recv_date")]
|
||||
public DateTime? ReceivedDate { get; set; }
|
||||
|
||||
[Column("posted")]
|
||||
public byte? Posted { get; set; }
|
||||
|
||||
[Column("post_date")]
|
||||
public DateTime? PostedDate { get; set; }
|
||||
|
||||
[Column("ext_date")]
|
||||
public DateTime? ExtendedDate { get; set; }
|
||||
|
||||
[Column("errmsg")]
|
||||
public short? ErrorMessage { get; set; }
|
||||
|
||||
[Column("override")]
|
||||
public byte? Override { get; set; }
|
||||
|
||||
[Column("edi")]
|
||||
public byte? Edi { get; set; }
|
||||
|
||||
[Column("ack")]
|
||||
public byte? Ack { get; set; }
|
||||
|
||||
[StringLength(7)]
|
||||
[Column("ack_num")]
|
||||
public string AckNumber { get; set; }
|
||||
|
||||
[StringLength(2)]
|
||||
[Column("ack_type")]
|
||||
public string AckType { get; set; }
|
||||
|
||||
[Column("ack_date")]
|
||||
public DateTime? AckDate { get; set; }
|
||||
|
||||
[StringLength(10)]
|
||||
[Column("sym_co_num")]
|
||||
public string SymCustomerOrderNumber { get; set; }
|
||||
|
||||
[Column("qty_chg")]
|
||||
public byte? QtyChanged { get; set; }
|
||||
|
||||
[Column("date_chg")]
|
||||
public byte? DateChanged { get; set; }
|
||||
|
||||
[Column("price_chg")]
|
||||
public byte? PriceChanged { get; set; }
|
||||
|
||||
[Key]
|
||||
[Column("co_num", Order = 0)]
|
||||
[StringLength(10)]
|
||||
|
||||
public string CustomerOrderNumber { get; set; }
|
||||
|
||||
[Key]
|
||||
[Column("co_line", Order = 1)]
|
||||
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
||||
public short CustomerOrderLine { get; set; }
|
||||
|
||||
[Key]
|
||||
[Column("co_release", Order = 2)]
|
||||
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
||||
public short CustomerOrderRelease { get; set; }
|
||||
|
||||
[StringLength(30)]
|
||||
[Column("item")]
|
||||
public string Item { get; set; }
|
||||
|
||||
[Column("qty_ordered")]
|
||||
public decimal? QtyOrdered { get; set; }
|
||||
|
||||
[Column("qty_ready")]
|
||||
public decimal? QtyReady { get; set; }
|
||||
|
||||
[Column("qty_shipped")]
|
||||
public decimal? QtyShipped { get; set; }
|
||||
|
||||
[Column("qty_packed")]
|
||||
public decimal? QtyPacked { get; set; }
|
||||
|
||||
[Column("disc")]
|
||||
public decimal? Discount { get; set; }
|
||||
|
||||
[Column("cost")]
|
||||
public decimal? Cost { get; set; }
|
||||
|
||||
[Column("price")]
|
||||
public decimal? Price { get; set; }
|
||||
|
||||
[StringLength(1)]
|
||||
[Column("ref_type")]
|
||||
public string RefType { get; set; }
|
||||
|
||||
[StringLength(10)]
|
||||
[Column("ref_num")]
|
||||
public string RefNumber { get; set; }
|
||||
|
||||
[Column("ref_line_suf")]
|
||||
public short? RefLineSuf { get; set; }
|
||||
|
||||
[Column("ref_release")]
|
||||
public short? RefRelease { get; set; }
|
||||
|
||||
[Column("due_date")]
|
||||
public DateTime? DueDate { get; set; }
|
||||
|
||||
[Column("ship_date")]
|
||||
public DateTime? ShipDate { get; set; }
|
||||
|
||||
[Column("brk_qty##1")]
|
||||
public decimal? BrkQtyOne { get; set; }
|
||||
|
||||
[Column("brk_qty##2")]
|
||||
public decimal? BrkQtyTwo { get; set; }
|
||||
|
||||
[Column("brk_qty##3")]
|
||||
public decimal? BrkQtyThree { get; set; }
|
||||
|
||||
[Column("brk_qty##4")]
|
||||
public decimal? BrkQtyFour { get; set; }
|
||||
|
||||
[Column("brk_qty##5")]
|
||||
public decimal? BrkQtyFive { get; set; }
|
||||
|
||||
[Column("reprice")]
|
||||
public byte? Reprice { get; set; }
|
||||
|
||||
[StringLength(30)]
|
||||
[Column("cust_item")]
|
||||
public string CustomerItem { get; set; }
|
||||
|
||||
[Column("qty_invoiced")]
|
||||
public decimal? QtyInvoiced { get; set; }
|
||||
|
||||
[Column("qty_returned")]
|
||||
public decimal? QtyReturned { get; set; }
|
||||
|
||||
[Column("cgs_total")]
|
||||
public decimal? CgsTotal { get; set; }
|
||||
|
||||
[StringLength(40)]
|
||||
[Column("feat_str")]
|
||||
public string FeatStr { get; set; }
|
||||
|
||||
[StringLength(1)]
|
||||
[Column("stat")]
|
||||
public string Status { get; set; }
|
||||
|
||||
[StringLength(7)]
|
||||
[Column("cust_num")]
|
||||
public string CustomerNumber { get; set; }
|
||||
|
||||
[Column("cust_seq")]
|
||||
public int? CustomerSequence { get; set; }
|
||||
|
||||
[Column("prg_bill_tot")]
|
||||
public decimal? PrgBillTot { get; set; }
|
||||
|
||||
[Column("prg_bill_app")]
|
||||
public decimal? PrgBillApp { get; set; }
|
||||
|
||||
[Column("release_date")]
|
||||
public DateTime? ReleaseDate { get; set; }
|
||||
|
||||
[Column("promise_date")]
|
||||
public DateTime? PromiseDate { get; set; }
|
||||
|
||||
[StringLength(4)]
|
||||
[Column("whse")]
|
||||
public string Warehouse { get; set; }
|
||||
|
||||
[StringLength(1)]
|
||||
[Column("wks_basis")]
|
||||
public string WksBasis { get; set; }
|
||||
|
||||
[Column("wks_value")]
|
||||
public decimal? WksValue { get; set; }
|
||||
|
||||
[StringLength(12)]
|
||||
[Column("comm_code")]
|
||||
public string CommCode { get; set; }
|
||||
|
||||
[StringLength(2)]
|
||||
[Column("trans_nat")]
|
||||
public string TransNat { get; set; }
|
||||
|
||||
[StringLength(1)]
|
||||
[Column("process_ind")]
|
||||
public string ProcessInd { get; set; }
|
||||
|
||||
[StringLength(4)]
|
||||
[Column("delterm")]
|
||||
public string DelTerm { get; set; }
|
||||
|
||||
[Column("unit_weight")]
|
||||
public decimal? UnitWeight { get; set; }
|
||||
|
||||
[StringLength(2)]
|
||||
[Column("origin")]
|
||||
public string Origin { get; set; }
|
||||
|
||||
[Column("cons_num")]
|
||||
public int? ConsNumber { get; set; }
|
||||
|
||||
[StringLength(6)]
|
||||
[Column("tax_code1")]
|
||||
public string TaxCodeOne { get; set; }
|
||||
|
||||
[StringLength(6)]
|
||||
[Column("tax_code2")]
|
||||
public string TaxCodeTwo { get; set; }
|
||||
|
||||
[Column("export_value")]
|
||||
public decimal? ExportValue { get; set; }
|
||||
|
||||
[StringLength(2)]
|
||||
[Column("ec_code")]
|
||||
public string EcCode { get; set; }
|
||||
|
||||
[StringLength(3)]
|
||||
[Column("transport")]
|
||||
public string Transport { get; set; }
|
||||
|
||||
[Column("pick_date")]
|
||||
public DateTime? PickupDate { get; set; }
|
||||
|
||||
[StringLength(3)]
|
||||
[Column("pricecode")]
|
||||
public string PriceCode { get; set; }
|
||||
|
||||
[StringLength(3)]
|
||||
[Column("u_m")]
|
||||
public string Uom { get; set; }
|
||||
|
||||
[Column("qty_ordered_conv")]
|
||||
public decimal? QtyOrderedReleased { get; set; }
|
||||
|
||||
[Column("price_conv")]
|
||||
public decimal? PriceReleased { get; set; }
|
||||
|
||||
[StringLength(7)]
|
||||
[Column("co_cust_num")]
|
||||
public string CustomerOrderCustomerNumber { get; set; }
|
||||
|
||||
[Column("packed")]
|
||||
public byte? Packed { get; set; }
|
||||
|
||||
[Column("bol")]
|
||||
public byte? Bol { get; set; }
|
||||
|
||||
[Column("qty_bco")]
|
||||
public decimal? QtyBco { get; set; }
|
||||
|
||||
[StringLength(1)]
|
||||
[Column("bco_code")]
|
||||
public string BcoCode { get; set; }
|
||||
|
||||
[StringLength(6)]
|
||||
[Column("ext_ref")]
|
||||
public string ExternalRef { get; set; }
|
||||
|
||||
[StringLength(22)]
|
||||
[Column("cust_po")]
|
||||
public string CustomerPoNumber { get; set; }
|
||||
|
||||
[StringLength(75)]
|
||||
[Column("non_appl_data")]
|
||||
public string NonApplyData { get; set; }
|
||||
|
||||
[Column("NoteExistsFlag")]
|
||||
public byte NoteExistsFlag { get; set; }
|
||||
|
||||
[Column("RecordDate")]
|
||||
public DateTime RecordDate { get; set; }
|
||||
|
||||
[Column("RowPointer")]
|
||||
public Guid RowPointer { get; set; }
|
||||
|
||||
[StringLength(40)]
|
||||
[Column("description")]
|
||||
public string Description { get; set; }
|
||||
|
||||
[Required]
|
||||
[StringLength(30)]
|
||||
[Column("CreatedBy")]
|
||||
public string CreatedBy { get; set; }
|
||||
|
||||
[Required]
|
||||
[StringLength(30)]
|
||||
[Column("UpdatedBy")]
|
||||
public string UpdatedBy { get; set; }
|
||||
|
||||
[Column("CreateDate")]
|
||||
public DateTime CreateDate { get; set; }
|
||||
|
||||
[Column("InWorkflow")]
|
||||
public byte InWorkflow { get; set; }
|
||||
|
||||
[StringLength(2)]
|
||||
[Column("trans_nat_2")]
|
||||
public string TransNatTwo { get; set; }
|
||||
|
||||
[Column("suppl_qty_conv_factor")]
|
||||
public decimal SupplyQtyConvFactor { get; set; }
|
||||
|
||||
[StringLength(100)]
|
||||
[Column("uf_FKR_EDI_AddIntDest")]
|
||||
public string UfFkrEdiAddIntDest { get; set; }
|
||||
|
||||
[StringLength(100)]
|
||||
[Column("Uf_FKR_EDI_CustPoLineNum")]
|
||||
public string UfFkrEdiCustPoLineNum { get; set; }
|
||||
|
||||
[StringLength(100)]
|
||||
[Column("uf_FKR_EDI_PlaceOrPortDischarge")]
|
||||
public string UfFkrEdiPlaceOrPortDischarge { get; set; }
|
||||
}
|
||||
}
|
||||
36
SytelineSaAppDataModel/Properties/AssemblyInfo.cs
Normal file
36
SytelineSaAppDataModel/Properties/AssemblyInfo.cs
Normal file
@@ -0,0 +1,36 @@
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("SytelineSaAppDataModel")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("SytelineSaAppDataModel")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2021")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Setting ComVisible to false makes the types in this assembly not visible
|
||||
// to COM components. If you need to access a type in this assembly from
|
||||
// COM, set the ComVisible attribute to true on that type.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||
[assembly: Guid("776570d9-f7d3-449d-8667-f436db1468d8")]
|
||||
|
||||
// Version information for an assembly consists of the following four values:
|
||||
//
|
||||
// Major Version
|
||||
// Minor Version
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||
250
SytelineSaAppDataModel/SytelineSaAppDataContext.cs
Normal file
250
SytelineSaAppDataModel/SytelineSaAppDataContext.cs
Normal file
@@ -0,0 +1,250 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.Data.Entity;
|
||||
using System.Linq;
|
||||
|
||||
namespace SytelineSaAppDataModel
|
||||
{
|
||||
public partial class SytelineSaAppDataContext : DbContext
|
||||
{
|
||||
public SytelineSaAppDataContext()
|
||||
: base("name=SytelineSaAppDataContext")
|
||||
{
|
||||
}
|
||||
|
||||
public virtual DbSet<EdiCustomerOrder> EdiCustomerOrder { get; set; }
|
||||
public virtual DbSet<EdiCustomerOrderLine> EdiCustomerOrderLine { get; set; }
|
||||
public virtual DbSet<EdiCustomerOrderLineItem> edi_coitem { get; set; }
|
||||
|
||||
protected override void OnModelCreating(DbModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<EdiCustomerOrder>()
|
||||
.Property(e => e.BlanketDollar)
|
||||
.HasPrecision(23, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrder>()
|
||||
.Property(e => e.Type)
|
||||
.IsFixedLength();
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrder>()
|
||||
.Property(e => e.Price)
|
||||
.HasPrecision(23, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrder>()
|
||||
.Property(e => e.Weight)
|
||||
.HasPrecision(9, 2);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrder>()
|
||||
.Property(e => e.Freight)
|
||||
.HasPrecision(23, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrder>()
|
||||
.Property(e => e.MiscCharges)
|
||||
.HasPrecision(23, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrder>()
|
||||
.Property(e => e.PrepaidAmount)
|
||||
.HasPrecision(23, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrder>()
|
||||
.Property(e => e.SalesTax)
|
||||
.HasPrecision(23, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrder>()
|
||||
.Property(e => e.Status)
|
||||
.IsFixedLength();
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrder>()
|
||||
.Property(e => e.Cost)
|
||||
.HasPrecision(20, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrder>()
|
||||
.Property(e => e.FreightT)
|
||||
.HasPrecision(23, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrder>()
|
||||
.Property(e => e.MchargesT)
|
||||
.HasPrecision(23, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrder>()
|
||||
.Property(e => e.PrepaidT)
|
||||
.HasPrecision(23, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrder>()
|
||||
.Property(e => e.SalesTaxT)
|
||||
.HasPrecision(23, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrder>()
|
||||
.Property(e => e.SalesTaxTwo)
|
||||
.HasPrecision(23, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrder>()
|
||||
.Property(e => e.SalesTaxTwoT)
|
||||
.HasPrecision(23, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrder>()
|
||||
.Property(e => e.DecimalFieldOne)
|
||||
.HasPrecision(10, 2);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrder>()
|
||||
.Property(e => e.DecimalFieldTwo)
|
||||
.HasPrecision(10, 2);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrder>()
|
||||
.Property(e => e.DecimailFieldThree)
|
||||
.HasPrecision(10, 2);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrder>()
|
||||
.Property(e => e.Discount)
|
||||
.HasPrecision(7, 4);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrder>()
|
||||
.Property(e => e.DiscountType)
|
||||
.IsFixedLength();
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrder>()
|
||||
.Property(e => e.DiscountAmount)
|
||||
.HasPrecision(23, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLine>()
|
||||
.Property(e => e.BlanketQty)
|
||||
.HasPrecision(20, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLine>()
|
||||
.Property(e => e.ContPrice)
|
||||
.HasPrecision(20, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLine>()
|
||||
.Property(e => e.Status)
|
||||
.IsFixedLength();
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLine>()
|
||||
.Property(e => e.BlanketQtyReleased)
|
||||
.HasPrecision(20, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLine>()
|
||||
.Property(e => e.ContPriceReleased)
|
||||
.HasPrecision(20, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLine>()
|
||||
.Property(e => e.QtySent)
|
||||
.HasPrecision(19, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLine>()
|
||||
.Property(e => e.SentCode)
|
||||
.IsFixedLength();
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLineItem>()
|
||||
.Property(e => e.QtyOrdered)
|
||||
.HasPrecision(19, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLineItem>()
|
||||
.Property(e => e.QtyReady)
|
||||
.HasPrecision(19, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLineItem>()
|
||||
.Property(e => e.QtyShipped)
|
||||
.HasPrecision(19, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLineItem>()
|
||||
.Property(e => e.QtyPacked)
|
||||
.HasPrecision(19, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLineItem>()
|
||||
.Property(e => e.Discount)
|
||||
.HasPrecision(4, 1);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLineItem>()
|
||||
.Property(e => e.Cost)
|
||||
.HasPrecision(20, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLineItem>()
|
||||
.Property(e => e.Price)
|
||||
.HasPrecision(20, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLineItem>()
|
||||
.Property(e => e.RefType)
|
||||
.IsFixedLength();
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLineItem>()
|
||||
.Property(e => e.BrkQtyOne)
|
||||
.HasPrecision(19, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLineItem>()
|
||||
.Property(e => e.BrkQtyTwo)
|
||||
.HasPrecision(19, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLineItem>()
|
||||
.Property(e => e.BrkQtyThree)
|
||||
.HasPrecision(19, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLineItem>()
|
||||
.Property(e => e.BrkQtyFour)
|
||||
.HasPrecision(19, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLineItem>()
|
||||
.Property(e => e.BrkQtyFive)
|
||||
.HasPrecision(19, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLineItem>()
|
||||
.Property(e => e.QtyInvoiced)
|
||||
.HasPrecision(19, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLineItem>()
|
||||
.Property(e => e.QtyReturned)
|
||||
.HasPrecision(19, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLineItem>()
|
||||
.Property(e => e.CgsTotal)
|
||||
.HasPrecision(23, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLineItem>()
|
||||
.Property(e => e.Status)
|
||||
.IsFixedLength();
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLineItem>()
|
||||
.Property(e => e.PrgBillTot)
|
||||
.HasPrecision(23, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLineItem>()
|
||||
.Property(e => e.PrgBillApp)
|
||||
.HasPrecision(23, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLineItem>()
|
||||
.Property(e => e.WksBasis)
|
||||
.IsFixedLength();
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLineItem>()
|
||||
.Property(e => e.WksValue)
|
||||
.HasPrecision(23, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLineItem>()
|
||||
.Property(e => e.UnitWeight)
|
||||
.HasPrecision(11, 3);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLineItem>()
|
||||
.Property(e => e.ExportValue)
|
||||
.HasPrecision(23, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLineItem>()
|
||||
.Property(e => e.QtyOrderedReleased)
|
||||
.HasPrecision(19, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLineItem>()
|
||||
.Property(e => e.PriceReleased)
|
||||
.HasPrecision(20, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLineItem>()
|
||||
.Property(e => e.QtyBco)
|
||||
.HasPrecision(19, 8);
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLineItem>()
|
||||
.Property(e => e.BcoCode)
|
||||
.IsFixedLength();
|
||||
|
||||
modelBuilder.Entity<EdiCustomerOrderLineItem>()
|
||||
.Property(e => e.SupplyQtyConvFactor)
|
||||
.HasPrecision(18, 10);
|
||||
}
|
||||
}
|
||||
}
|
||||
80
SytelineSaAppDataModel/SytelineSaAppDataModel.csproj
Normal file
80
SytelineSaAppDataModel/SytelineSaAppDataModel.csproj
Normal file
@@ -0,0 +1,80 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="..\packages\EntityFramework.6.4.4\build\EntityFramework.props" Condition="Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.props')" />
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{776570D9-F7D3-449D-8667-F436DB1468D8}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>SytelineSaAppDataModel</RootNamespace>
|
||||
<AssemblyName>SytelineSaAppDataModel</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<Deterministic>true</Deterministic>
|
||||
<NuGetPackageImportStamp>
|
||||
</NuGetPackageImportStamp>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<StartupObject />
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.SqlServer.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.ComponentModel.DataAnnotations" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Runtime.Serialization" />
|
||||
<Reference Include="System.Security" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="EdiCustomerOrder.cs" />
|
||||
<Compile Include="EdiCustomerOrderLine.cs" />
|
||||
<Compile Include="EdiCustomerOrderLineItem.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="SytelineSaAppDataContext.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="App.config" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||
<PropertyGroup>
|
||||
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
||||
</PropertyGroup>
|
||||
<Error Condition="!Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\EntityFramework.6.4.4\build\EntityFramework.props'))" />
|
||||
<Error Condition="!Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\EntityFramework.6.4.4\build\EntityFramework.targets'))" />
|
||||
</Target>
|
||||
<Import Project="..\packages\EntityFramework.6.4.4\build\EntityFramework.targets" Condition="Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.targets')" />
|
||||
</Project>
|
||||
4
SytelineSaAppDataModel/packages.config
Normal file
4
SytelineSaAppDataModel/packages.config
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="EntityFramework" version="6.4.4" targetFramework="net451" />
|
||||
</packages>
|
||||
Reference in New Issue
Block a user