예제 #1
0
 public CustomerObj(string InternalID) : base(InternalID)
 {
     this.Incoterms2   = "";
     this.Name1        = "";
     this.Name2        = "";
     this.City         = "";
     this.PO           = "";
     this.Division     = "";
     this.Street       = "";
     this.Tel1         = "";
     this.Fax          = "";
     this.SalesOrg     = "";
     this.DistrChannel = "";
     this.Currency     = "";
     this.PaymentTerm  = null;
     this.Incoterms1   = null;
     this.Country      = null;
     this.Region       = null;
 }
예제 #2
0
 public CustomerObj(string InternalID, string DisplayName)
 {
     this.Incoterms2   = "";
     this.Name1        = "";
     this.Name2        = "";
     this.City         = "";
     this.PO           = "";
     this.Division     = "";
     this.Street       = "";
     this.Tel1         = "";
     this.Fax          = "";
     this.SalesOrg     = "";
     this.DistrChannel = "";
     this.Currency     = "";
     this.PaymentTerm  = null;
     this.Incoterms1   = null;
     this.Country      = null;
     this.Region       = null;
     base.internal_id  = InternalID;
     base.display_name = DisplayName;
 }