예제 #1
0
        public override void FillFromDataRow(System.Data.DataRow dr)
        {
            this.SuperBtrId       = DbConvert.ToInt64(dr, "SuperBtrId");
            this.CompetitorInfoId = DbConvert.ToInt64(dr, "CompetitorInfoId");

            this.LastModified = DbConvert.ToDateTime(dr, "LastModified");
            this.TshirtAway   = DbConvert.ToString(dr, "TshirtAway");
            this.TshirtHome   = DbConvert.ToString(dr, "TshirtHome");

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

            this.external_state.StatisticValues = obj.StatisticValues;
        }
예제 #2
0
 public CompetitorInfosLn()
 {
     external_state = new CompetitorInfosValuesExternalState();
 }