Exemplo n.º 1
0
 private void EnsureExternalState()
 {
     if (this.Type == GROUP_TYPE_GROUP_T)
     {
         this.ExternalState = LineSerializeHelper.ObjectToString <GroupTournamentExternalState>(this.GroupTournament);
     }
     else if (this.Type == GROUP_TYPE_SPORT)
     {
         this.ExternalState = LineSerializeHelper.ObjectToString <GroupSportExternalState>(this.GroupSport);
     }
 }
Exemplo n.º 2
0
        public override System.Data.DataRow CreateDataRow(System.Data.DataTable dtSample)
        {
            DataRow dr = dtSample.NewRow();

            dr["matchinfoid"]  = this.MatchInfoId;
            dr["LastModified"] = this.LastModified.Value;

            string sExternalState = LineSerializeHelper.ObjectToString <MatchInfosValuesExternalState>(this.external_state);

            dr["external_state"] = sExternalState;

            return(dr);
        }
Exemplo n.º 3
0
        public override System.Data.DataRow CreateDataRow(System.Data.DataTable dtSample)
        {
            DataRow dr = dtSample.NewRow();

            dr["SuperBtrId"]       = this.SuperBtrId;
            dr["tshirthome"]       = this.TshirtHome;
            dr["tshirtaway"]       = this.TshirtAway;
            dr["LastModified"]     = this.LastModified;
            dr["CompetitorInfoId"] = this.CompetitorInfoId;

            string sExternalState = LineSerializeHelper.ObjectToString <CompetitorInfosValuesExternalState>(this.external_state);

            dr["external_state"] = sExternalState;

            return(dr);
        }
Exemplo n.º 4
0
 private void EnsureExternalState()
 {
     this.ExtendedState.Value = LineSerializeHelper.ObjectToString <MatchExternalState>(this.MatchExternalState);
 }
Exemplo n.º 5
0
 private void EnsureExternalState()
 {
     this.ExternalState = LineSerializeHelper.ObjectToString <BetDomainTypeExternalState>(this.m_bdtes);
 }
Exemplo n.º 6
0
 private void EnsureExternalState()
 {
     this.ExternalState = LineSerializeHelper.ObjectToString <CompetitorExternalState>(this.CompetitorExternalState);
 }
Exemplo n.º 7
0
 private void EnsureExternalState()
 {
     this.ExtendedState = LineSerializeHelper.ObjectToString <BetDomainExternalState>(this.BetDomainExternalState);
 }