/// <summary>
 /// Deprecated Method for adding a new object to the ExerciseTypes EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToExerciseTypes(ExerciseType exerciseType)
 {
     base.AddObject("ExerciseTypes", exerciseType);
 }
 /// <summary>
 /// Create a new ExerciseType object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="isActive">Initial value of the IsActive property.</param>
 public static ExerciseType CreateExerciseType(global::System.Int32 id, global::System.String name, global::System.Boolean isActive)
 {
     ExerciseType exerciseType = new ExerciseType();
     exerciseType.Id = id;
     exerciseType.Name = name;
     exerciseType.IsActive = isActive;
     return exerciseType;
 }