Ejemplo n.º 1
0
 public override void Reps(TypeTrainingEnum typeTraining, out Int32 min, out Int32 max)
 {
     if (typeTraining == TypeTrainingEnum.Statodynamics)
     {
         min = 20;
         max = 35;
     }
     else if (typeTraining == TypeTrainingEnum.Hypertrophy)
     {
         min = 8;
         max = 30;
     }
     else if (typeTraining == TypeTrainingEnum.DevelopmentStrength)
     {
         min = 1;
         max = 7;
     }
     else
     {
         min = 1;
         max = 35;
     }
 }
Ejemplo n.º 2
0
 public abstract void Reps(TypeTrainingEnum typeTraining, out Int32 min, out Int32 max);