コード例 #1
0
ファイル: Request.cs プロジェクト: AkiLotus/PlagCheck
 public Request(PlagCheck_Server.Problem chosenProb, string lang, List <PlagCheck_Server.Solution> solList, bool internalCheck)
 {
     chosenProblem   = chosenProb;
     chosenLanguage  = lang;
     solutionList    = solList;
     isInternalCheck = internalCheck;
 }
コード例 #2
0
ファイル: Request.cs プロジェクト: AkiLotus/PlagCheck
 public Request()
 {
     chosenProblem   = new PlagCheck_Server.Problem();
     chosenLanguage  = "";
     solutionList    = new List <PlagCheck_Server.Solution>();
     isInternalCheck = false;
 }