Exemple #1
0
        private void init(int id
                          , PickadosGenNHibernate.EN.Pickados.TeamEN club_team, PickadosGenNHibernate.EN.Pickados.TeamEN national_team, string name, System.Collections.Generic.IList <PickadosGenNHibernate.EN.Pickados.ScorerEN> scorer)
        {
            this.Id = id;


            this.Club_team = club_team;

            this.National_team = national_team;

            this.Name = name;

            this.Scorer = scorer;
        }
Exemple #2
0
        private void init(int id
                          , PickadosGenNHibernate.EN.Pickados.TeamEN away, PickadosGenNHibernate.EN.Pickados.TeamEN home, string stadium, PickadosGenNHibernate.EN.Pickados.CompetitionEN competition, System.Collections.Generic.IList <PickadosGenNHibernate.EN.Pickados.PickEN> pick_rel, Nullable <DateTime> date)
        {
            this.Id = id;


            this.Away = away;

            this.Home = home;

            this.Stadium = stadium;

            this.Competition = competition;

            this.Pick_rel = pick_rel;

            this.Date = date;
        }
Exemple #3
0
 public MatchEN(int id, PickadosGenNHibernate.EN.Pickados.TeamEN away, PickadosGenNHibernate.EN.Pickados.TeamEN home, string stadium
                , PickadosGenNHibernate.EN.Pickados.CompetitionEN competition, System.Collections.Generic.IList <PickadosGenNHibernate.EN.Pickados.PickEN> pick_rel, Nullable <DateTime> date
                )
 {
     this.init(Id, away, home, stadium, competition, pick_rel, date);
 }
Exemple #4
0
 public PlayerEN(int id, PickadosGenNHibernate.EN.Pickados.TeamEN club_team, PickadosGenNHibernate.EN.Pickados.TeamEN national_team, string name, System.Collections.Generic.IList <PickadosGenNHibernate.EN.Pickados.ScorerEN> scorer
                 )
 {
     this.init(Id, club_team, national_team, name, scorer);
 }