CleanUp
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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; }
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user