Exemple #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;
 }
Exemple #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;
 }
Exemple #3
0
 public OpQuotationObj(string InternalID) : base(InternalID)
 {
     this.QuotationNo     = "";
     this.Notice          = "";
     this.UserStatus      = "";
     this.Currency        = "";
     this.Incoterm2       = "";
     this.ValidFrom       = DateTime.MinValue;
     this.ValidTo         = DateTime.MinValue;
     this.QuoteDate       = DateTime.Now;
     this.Status          = 0;
     this.ValidityDays    = 0;
     this.Incoterms1      = null;
     this.Engineer        = null;
     this.PaymentTerm     = null;
     this.DeliveryTerm    = "";
     this.Attn            = "";
     this.FaxEmail        = "";
     this.CustomerName    = "";
     this.CustomerAddress = "";
     this.Notification    = null;
 }