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; }
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; }