This commit is contained in:
Natlinux
2022-11-13 19:54:03 +01:00
parent ee8c687f5c
commit 4a47b178f4
30 changed files with 827 additions and 25 deletions

View File

@@ -8,7 +8,7 @@ namespace Apollon.Domain.Models
{
public class NameList
{
public NameList(Guid id,string firstName, string lastName, int passNumber, string society, int societyNumber, string birthday, string country)
public NameList(Guid id, string firstName, string lastName, int passNumber, string society, int societyNumber, string birthday, string country, int qualification)
{
Id = id;
FirstName = firstName;
@@ -18,15 +18,17 @@ namespace Apollon.Domain.Models
SocietyNumber = societyNumber;
Birthday = birthday;
Country = country;
Qualification = qualification;
}
public Guid Id { get; }
public string FirstName { get; }
public string LastName { get; }
public int PassNumber { get; }
public string Society { get; }
public int SocietyNumber { get; }
public string Birthday { get; }
public string Country { get; }
}
public string Society { get; }
public int SocietyNumber { get; }
public string Birthday { get; }
public string Country { get; }
public int Qualification { get; }
}
}

View File

@@ -8,7 +8,7 @@ namespace Apollon.Domain.Models
{
public class Tournament
{
public Tournament(Guid id, string logo, string organisation, string tournamentName, string competition, string competitionImage, DateTime startDate, DateTime endDate, string location, int rounds)
public Tournament(Guid id, string logo, string organisation, string tournamentName, string competition, string competitionImage, DateTime startDate, DateTime endDate, string location, int rounds, int targets)
{
Id = id;
Logo = logo;
@@ -20,6 +20,7 @@ namespace Apollon.Domain.Models
EndDate = endDate;
Location = location;
Rounds = rounds;
Targets = targets;
}
public Guid Id { get; }
@@ -32,6 +33,7 @@ namespace Apollon.Domain.Models
public DateTime EndDate { get; }
public string Location { get; }
public int Rounds { get; }
public int Targets { get; }
}
}