Example #1
0
        public FulFillable(string name, StatisticType dataType, PatientJoint affectedJoint, FulFillable previous, int repetitions, WriteStatisticManager statisticManager)
        {
            this.logger.AddLogAppender <ConsoleAppender>();

            this.name             = name;
            this.previous         = previous;
            this.repetitions      = this.initialRepetitions = repetitions;
            this.statisticManager = statisticManager;
            this.dataType         = dataType;
            this.affectedJoint    = affectedJoint;

            this.statisticData = AddStatisticData(dataType, affectedJoint);
        }
Example #2
0
 public Joint(string name, StatisticType statisticType, PatientJoint affectedJoint, SettingsManager settingsManager, Feedback feedback, PitchType pitchType, FulFillable previous, int repetitions, WriteStatisticManager statisticManager) : base(settingsManager, feedback, pitchType, name, statisticType, affectedJoint, previous, repetitions, statisticManager)
 {
     this.type = Types.joint;
 }
Example #3
0
 public Informable(SettingsManager settingsManager, Feedback feedback, PitchType pitchType, string name, StatisticType statisticType, PatientJoint affectedJoint, FulFillable previous, int repetitions, WriteStatisticManager statisticManager) : base(name, statisticType, affectedJoint, previous, repetitions, statisticManager)
 {
     this.database  = Database.Instance();
     this.feedback  = feedback;
     this.pitchType = pitchType;
 }
Example #4
0
 public BaseStep(string unityObjectName, StatisticType statisticType, PatientJoint affectedJoint, FulFillable previous, int repetitions, WriteStatisticManager statisticManager) : base(unityObjectName, statisticType, affectedJoint, previous, repetitions, statisticManager)
 {
     this.unityObjectName = unityObjectName;
 }
Example #5
0
 public Exercise(string name, StatisticType statisticType, PatientJoint affectedJoint, FulFillable previous, int repetitions, WriteStatisticManager statisticManager) : base(name, statisticType, affectedJoint, previous, repetitions, statisticManager)
 {
 }
Example #6
0
 public void AddNext(FulFillable next)
 {
     this.next = next;
 }