Beispiel #1
0
 public Competition(string beginDate, string endDate, int platformsCount, bool isFinished, CompetitionType competitionType, CompetitionPlace competitionPlace, FederationMember chiefJudge)
 {
     this.Id = new Guid();
     this.BeginDate = beginDate;
     this.EndDate = endDate;
     this.PlatformsCount = platformsCount;
     this.IsFinished = isFinished;
     this.CompetitionType = competitionType;
     this.CompetitionPlace = competitionPlace;
     this.ChiefJudge = chiefJudge;
 }
Beispiel #2
0
 public Competition(Guid id, string beginDate, string endDate, int platformsCount, bool isFinished, CompetitionType competitionType, CompetitionPlace competitionPlace, FederationMember chiefJudge)
     : this(beginDate, endDate, platformsCount, isFinished, competitionType, competitionPlace, chiefJudge)
 {
     this.Id = id;
 }