private void PopulateFields(InsurityCustomer customer)
 {
     label_PathTable.Content = customer.PathTableLocation;
     GetPathTableValues(customer.PathTableLocation);
     PopulatePathTable();
 }
 public PathTableMainWindow(InsurityCustomer customer)
 {
     _customer = customer;
     InitializeComponent();
     PopulateFields(customer);
 }