ldj/WcfServiceErp/wcfData/ErpPurch.cs

26 lines
506 B
C#

using System;
using System.Runtime.Serialization;
using System.Data;
using System.Collections.Generic;
namespace DeiNiu.wms.Data.Model.Wcf
{
[DataContract]
public class ErpPurch : WcfErp_purch
{
private List<WcfErp_purch_d> erpPurchDetails;
public ErpPurch(Erp_purch dbObj):base(dbObj)
{
}
[DataMember]
public List<WcfErp_purch_d> ErpPurchDetails { get => erpPurchDetails; set => erpPurchDetails = value; }
}
}