Exemple #1
0
 /// <summary>
 /// Update a database row from a class
 /// </summary>
 public static void UpdateRowFromCoresretorddetcriteria(ref DataRow row, Coresretorddetcriteria entity)
 {
     row.SetField("transty", entity.transty);
     row.SetField("orderno", entity.orderno);
     row.SetField("ordersuf", entity.ordersuf);
     row.SetField("lineno", entity.lineno);
     row.SetField("customparam", entity.customparam);
 }
Exemple #2
0
        public static Coresretorddetcriteria BuildCoresretorddetcriteriaFromRow(DataRow row)
        {
            Coresretorddetcriteria entity = new Coresretorddetcriteria();

            entity.transty     = row.IsNull("transty") ? string.Empty : row.Field <string>("transty");
            entity.orderno     = row.IsNull("orderno") ? 0 : row.Field <int>("orderno");
            entity.ordersuf    = row.IsNull("ordersuf") ? 0 : row.Field <int>("ordersuf");
            entity.lineno      = row.IsNull("lineno") ? 0 : row.Field <int>("lineno");
            entity.customparam = row.IsNull("customparam") ? string.Empty : row.Field <string>("customparam");
            return(entity);
        }