Ejemplo n.º 1
0
        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;
        }
Ejemplo n.º 2
0
 public MatchInfosLn()
 {
     external_state = new MatchInfosValuesExternalState();
 }