예제 #1
0
파일: Practice.cs 프로젝트: aata/szotar
 public PracticeItem(long setID, string phrase, string translation, PracticeHistory history = null)
 {
     Phrase      = phrase;
     Translation = translation;
     SetID       = setID;
     History     = history ?? new PracticeHistory();
 }
예제 #2
0
파일: Practice.cs 프로젝트: dbremner/szotar
		public PracticeItem(long setID, string phrase, string translation, PracticeHistory history = null) {
			Phrase = phrase;
			Translation = translation;
			SetID = setID;
			History = history ?? new PracticeHistory();
		}