コード例 #1
0
ファイル: MatchInfos.cs プロジェクト: RemSoftDev/SportBetting
        public override void FillFromDataRow(System.Data.DataRow dr)
        {
            this.MatchInfoId  = DbConvert.ToInt64(dr, "matchinfoid");
            this.LastModified = DbConvert.ToDateTime(dr, "LastModified");

            MatchInfosValuesExternalState obj = LineSerializeHelper.StringToObject <MatchInfosValuesExternalState>(DbConvert.ToString(dr, "external_state"));

            this.external_state.StatisticValues = obj.StatisticValues;
        }
コード例 #2
0
ファイル: MatchInfos.cs プロジェクト: RemSoftDev/SportBetting
 public MatchInfosLn()
 {
     external_state = new MatchInfosValuesExternalState();
 }