Beispiel #1
0
 public Joueur()
 {
     this._id            = Id;
     this._nom           = Nom;
     this._dateEntree    = DateEntree;
     this._dateNaissance = DateNaissance;
     this._lePoste       = LePoste;
     this._lePays        = LePays;
 }
Beispiel #2
0
 public Fromage(int id = 0, string name = "", DateTime creation = new DateTime(), Pays origin = null, string image = "")
 {
     Id = id;
     Name = name;
     Creation = creation;
     if (origin == null) { Origin = new Pays(); }
     else Origin = origin;
     Image = image;
 }
Beispiel #3
0
 public Joueur(int id, string nom, DateTime dateEntree, DateTime dateNaissance, Poste lePoste, Pays lePays)
 {
     _id            = id;
     _nom           = nom;
     _dateEntree    = dateEntree;
     _dateNaissance = dateNaissance;
     _lePoste       = lePoste;
     _lePays        = lePays;
 }
Beispiel #4
0
        //private Equipe equipe;

        public Joueur(int id = 0, string nom = "", DateTime dateEntree = new DateTime(), DateTime dateNaissance = new DateTime(), Pays pays = null, Poste poste = null)
        {
            this.id            = id;
            this.nom           = nom;
            this.dateEntree    = dateEntree;
            this.dateNaissance = dateNaissance;
            this.pays          = pays;
            this.poste         = poste;
            // this.equipe = equipe;
        }