Exemplo n.º 1
0
 private IFixtureStepRunner RunnerOf(NoteStep step) => new NoteStepRunner(step);
Exemplo n.º 2
0
 public Pitch(NoteStep step, string octove)
 {
     Step   = step;
     Octove = octove;
 }
Exemplo n.º 3
0
 public Pitch(NoteStep step, NoteAccidental accidental, string octove)
 {
     Step   = step;
     Octove = octove;
 }
Exemplo n.º 4
0
 public Pitch(NoteStep step)
 {
     Step   = step;
     Octove = string.Empty;
 }