Exemplo n.º 1
0
        private void init(int id
                          , double benefit, double stakeAverage, float yield, double oddAverage, int totalPicks, Nullable <DateTime> initialDate, PickadosGenNHibernate.EN.Pickados.TipsterEN tipster)
        {
            this.Id = id;


            this.Benefit = benefit;

            this.StakeAverage = stakeAverage;

            this.Yield = yield;

            this.OddAverage = oddAverage;

            this.TotalPicks = totalPicks;

            this.InitialDate = initialDate;

            this.Tipster = tipster;
        }
Exemplo n.º 2
0
        private void init(int id
                          , TimeSpan created_at, TimeSpan modified_at, double stake, string description, bool private_, System.Collections.Generic.IList <PickadosGenNHibernate.EN.Pickados.PickEN> pick, PickadosGenNHibernate.EN.Pickados.TipsterEN tipster, double totalOdd, PickadosGenNHibernate.Enumerated.Pickados.PickResultEnum postResult)
        {
            this.Id = id;


            this.Created_at = created_at;

            this.Modified_at = modified_at;

            this.Stake = stake;

            this.Description = description;

            this.Private_ = private_;

            this.Pick = pick;

            this.Tipster = tipster;

            this.TotalOdd = totalOdd;

            this.PostResult = postResult;
        }
Exemplo n.º 3
0
 public StatsEN(int id, double benefit, double stakeAverage, float yield, double oddAverage, int totalPicks, Nullable <DateTime> initialDate, PickadosGenNHibernate.EN.Pickados.TipsterEN tipster
                )
 {
     this.init(Id, benefit, stakeAverage, yield, oddAverage, totalPicks, initialDate, tipster);
 }
Exemplo n.º 4
0
 public PostEN(int id, TimeSpan created_at, TimeSpan modified_at, double stake, string description, bool private_, System.Collections.Generic.IList <PickadosGenNHibernate.EN.Pickados.PickEN> pick, PickadosGenNHibernate.EN.Pickados.TipsterEN tipster, double totalOdd, PickadosGenNHibernate.Enumerated.Pickados.PickResultEnum postResult
               )
 {
     this.init(Id, created_at, modified_at, stake, description, private_, pick, tipster, totalOdd, postResult);
 }