1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
using System;
using System.Xml;
using System.Xml.Serialization;
using System.IO;
using System.Collections;
using System.ComponentModel;
namespace struct
{
[Serializable()]
public class slsses: SAbContract
{
[DomainModelMappingAttribute(ClassName="LossesContract", PropertyName="SignatureDate")]
public SDateTime signatureDate
{
get
{
return p_signatureDate;
}
set
{
p_signatureDate = value;
}
}
private SDateTime p_signatureDate = null;
[DomainModelMappingAttribute(ClassName="LossesContract", PropertyName="Versions")]
public SLossesCtrVersArrayList versions
{
get
{
return p_versions;
}
set
{
p_versions = value;
}
}
private SLossesCtrVersArrayList p_versions = new SLossesCtrVersArrayList();
[DomainModelMappingAttribute(ClassName="LossesContract", PropertyName="Lots!!!")]
public SLossesLotArrayList lots
{
get
{
return p_lots;
}
set
{
p_lots = value;
}
}
private LossesLst p_lots = new SLossesLotArrayList();
public SLossesContr() : base()
{
}
}
}
} |