// receives the changed workout and updates current listview and sendable object
 void ChangedWorkoutCell(WorkoutModel watchObject)
 {
     for (int i = 0; i < Workouts.Count; i++)
     {
         if (Workouts[i].Name == watchObject.Name)
         {
             Workouts.RemoveAt(i);
             Workouts.Insert(i, watchObject);
             CollectionToNewWatchModel(Workouts, globalWatchModelHold);
             return;
         }
     }
 }