Exemplo n.º 1
0
 public PracticeItem(long setID, string phrase, string translation, PracticeHistory history = null)
 {
     Phrase      = phrase;
     Translation = translation;
     SetID       = setID;
     History     = history ?? new PracticeHistory();
 }
Exemplo n.º 2
0
		public PracticeItem(long setID, string phrase, string translation, PracticeHistory history = null) {
			Phrase = phrase;
			Translation = translation;
			SetID = setID;
			History = history ?? new PracticeHistory();
		}