26 lines
600 B
C#
26 lines
600 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
using System.Data;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DeiNiu.wms.Data.Model.Wcf
|
|
{
|
|
[DataContract]
|
|
public class ErpSale : WcfErp_sale
|
|
{
|
|
|
|
private List<WcfErp_sale_d> erpSaleDetails;
|
|
|
|
public ErpSale(Erp_sale dbObj):base(dbObj)
|
|
{
|
|
}
|
|
|
|
|
|
|
|
[DataMember]
|
|
public List<WcfErp_sale_d> ErpSaleDetails { get => erpSaleDetails; set => erpSaleDetails = value; }
|
|
|
|
// internal List<WcfErp_sale_d> ErpSaleDetails { get => erpSaleDetails; set => erpSaleDetails = value; }
|
|
|
|
}
|
|
} |