public void PopulateFrom(CoverageArea ca)
 {
     this.city.Value = ca.City;
     //this.city_code
     // TODO
     this.county.Value = ca.County;
     this.hospital.Value = ca.Hospital;
     this.state.Value = ca.State;
     this.zip_code.Value = ca.Zip;
 }
 public void PopulateFrom(CoverageArea ca)
 {
     this.end_date.Value = ca.DisableDate;
     this.event_end_date.Value = ca.EventEndDate;
     this.event_start_date.Value = ca.EventStartDate;
     this.is_excluded.Value = ca.IsExclusion;
     this.start_date.Value = ca.EnableDate;
 }