public void PopulateFrom(TerminalInfo term)
 {
     this.end_date.Value = term.DisableDate;
     this.start_date.Value = term.EnableDate;
     this.terminal_id.Value = term.TerminalId;
 }
 public void PopulateFrom(TerminalInfo ti)
 {
     this.is_tax_number.Value = ti.IsTaxNumber;
     this.is_vcfee_tax_number.Value = ti.IsVCFeeTaxNumber;
     this.amex_id.Value = ti.Amex;
     this.discover_id.Value = ti.Discover;
     this.end_date.Value = ti.DisableDate;
     this.is_card_present.Value = Flag(ti.IsCardPresent);
     this.start_date.Value = ti.EnableDate;
     this.visa_mastercard_id.Value = ti.Visa;
 }