private void AddRepair()
 {
     Repair rep = new Repair();
     rep.Tour = this.Tour;
     this.Tour.Repair.Add(rep);
     DataServiceRepair dsRep = new DataServiceRepair();
     dsRep.addRepair(rep);
     RepairList.Add(rep);
 }