示例#1
0
        public Exercise(ExerciseParams p, MisIdiomas l, string name)
        {
            ID = NumberOfExercises;
            NumberOfExercises++;

            this.Name.Add(name, l);
            this.PrimaryMuscleGroup.Add(p.PrimaryMuscle);

            PublicFun.EXERCISES_ALL.Add(this);
        }
示例#2
0
 public Exercise(ExerciseParams p, MisIdiomas l, string name, string description) : this(p, l, name)
 {
     this.Description.Add(description, l);
 }