コード例 #1
0
        public static Refreshprodcatcriteria BuildRefreshprodcatcriteriaFromRow(DataRow row)
        {
            Refreshprodcatcriteria entity = new Refreshprodcatcriteria();

            entity.coNum     = row.IsNull("co_num") ? string.Empty : row.Field <string>("co_num");
            entity.whNum     = row.IsNull("wh_num") ? string.Empty : row.Field <string>("wh_num");
            entity.userfield = row.IsNull("userfield") ? string.Empty : row.Field <string>("userfield");
            return(entity);
        }
コード例 #2
0
 /// <summary>
 /// Update a database row from a class
 /// </summary>
 public static void UpdateRowFromRefreshprodcatcriteria(ref DataRow row, Refreshprodcatcriteria entity)
 {
     row.SetField("co_num", entity.coNum);
     row.SetField("wh_num", entity.whNum);
     row.SetField("userfield", entity.userfield);
 }