internal IIstufenTriple Build(IPsdzIstufenTriple istufenTriple)
 {
     if (istufenTriple == null)
     {
         return(null);
     }
     return(new IntegrationLevelTriple(istufenTriple.Shipment, istufenTriple.Last, istufenTriple.Current));
 }
Exemple #2
0
 public void SetIstufen(IPsdzIstufenTriple istufenTriple)
 {
     if (istufenTriple != null)
     {
         this.IstufeShipment = istufenTriple.Shipment;
         this.IstufeLast     = istufenTriple.Last;
         this.IstufeCurrent  = istufenTriple.Current;
         return;
     }
     this.IstufeShipment = null;
     this.IstufeLast     = null;
     this.IstufeCurrent  = null;
 }