コード例 #1
0
        public DiveResultsStepOutputModel RunDiveStages()
        {
            _outputResultsStepOutput = new DiveResultsStepOutputModel();
            _diveStages    = CreateDiveStages();
            _preDiveStages = CreatePreDiveStages();

            RunStages();

            return(_outputResultsStepOutput);
        }
コード例 #2
0
 public DiveStageResults(int compartmentCount, DiveResultsStepOutputModel resultsStepOutput, IDiveProfile diveProfile)
 {
     _compartmentCount  = compartmentCount;
     _resultsStepOutput = resultsStepOutput;
     _diveProfile       = diveProfile;
 }