Exemplo n.º 1
0
 public Game(uID ID, DateTime matchdate, string location, Team receiving, Team guest, Enumerations.Weather weather) : base(ID)
 {
     _matchdate = matchdate;
     _location  = location;
     _receiving = receiving;
     _guest     = guest;
     _weather   = weather;
 }
Exemplo n.º 2
0
 public Team(uID ID, string name, DateTime founded, Person manager, Person trainer, Enumerations.Morale morale) : base(ID)
 {
     _name    = name;
     _founded = founded;
     _manager = manager;
     _trainer = trainer;
     _morale  = morale;
 }
Exemplo n.º 3
0
 public Stadium(uID ID, string name, string city, Team belongsTo) : base(ID)
 {
     _name      = name;
     _city      = city;
     _belongsTo = belongsTo;
 }
Exemplo n.º 4
0
 public Person(uID ID, string name, DateTime birth, Enumerations.Satisfaction satisfaction) : base(ID)
 {
     _name         = name;
     _birth        = birth;
     _satisfaction = satisfaction;
 }
Exemplo n.º 5
0
 public Entity(uID ID)
 {
     _ID = ID;
 }