コード例 #1
0
ファイル: EquipoxEvento.cs プロジェクト: JaumeJBofi/GitEquipu
 public EquipoxEvento(Equipo team, StandInformation stand)
 {
     _team       = team;
     TotalEarned = 0.0;
     EntriesSold = 0;
     Stand       = stand;
 }
コード例 #2
0
ファイル: EquipoxEvento.cs プロジェクト: JaumeJBofi/GitEquipu
 public EquipoxEvento(Equipo team, string place, string date, string time)
 {
     _team       = team;
     TotalEarned = 0.0;
     EntriesSold = 0;
     Stand       = new StandInformation(date, time, place);
 }