Пример #1
0
 public void Mark(TournamentApplicationState state, string notes = "")
 {
     this.State = state;
     this.TournamentApplicationHistories.Add(new TournamentApplicationHistory(state, notes));
 }
Пример #2
0
 public TournamentApplicationHistory(TournamentApplicationState state, string notes)
 {
     this.State = state;
     this.Notes = notes;
 }