コード例 #1
0
ファイル: Recipe.cs プロジェクト: jmaillet/Kitchen
 private void AddInstructionStep(int stepNumber, string detail)
 {
     var instructionStep = new InstructionStep(stepNumber, detail, this);
     _steps.Add(instructionStep);
 }