Ejemplo n.º 1
0
 /// <summary>
 /// Update a database row from a class
 /// </summary>
 public static void UpdateRowFromPobundlescriteria(ref DataRow row, Pobundlescriteria entity)
 {
     row.SetField("pono", entity.pono);
     row.SetField("posuf", entity.posuf);
     row.SetField("lineno", entity.lineno);
     row.SetField("ordertype", entity.ordertype);
     row.SetField("inquirefl", entity.inquirefl);
     row.SetField("functionname", entity.functionname);
     row.SetField("qtyreq", entity.qtyreq);
     row.SetField("prod", entity.prod);
     row.SetField("units", entity.units);
     row.SetField("whse", entity.whse);
     row.SetField("price", entity.price);
     row.SetField("eachfl", entity.eachfl);
     row.SetField("bundleid", entity.bundleid);
     row.SetField("iSecurity", entity.iSecurity);
     row.SetField("setprevfl", entity.setprevfl);
     row.SetField("getbundlefl", entity.getbundlefl);
     row.SetField("userfield", entity.userfield);
 }
Ejemplo n.º 2
0
        public static Pobundlescriteria BuildPobundlescriteriaFromRow(DataRow row)
        {
            Pobundlescriteria entity = new Pobundlescriteria();

            entity.pono         = row.IsNull("pono") ? 0 : row.Field <int>("pono");
            entity.posuf        = row.IsNull("posuf") ? 0 : row.Field <int>("posuf");
            entity.lineno       = row.IsNull("lineno") ? 0 : row.Field <int>("lineno");
            entity.ordertype    = row.IsNull("ordertype") ? string.Empty : row.Field <string>("ordertype");
            entity.inquirefl    = row.Field <bool>("inquirefl");
            entity.functionname = row.IsNull("functionname") ? string.Empty : row.Field <string>("functionname");
            entity.qtyreq       = row.IsNull("qtyreq") ? decimal.Zero : row.Field <decimal>("qtyreq");
            entity.prod         = row.IsNull("prod") ? string.Empty : row.Field <string>("prod");
            entity.units        = row.IsNull("units") ? string.Empty : row.Field <string>("units");
            entity.whse         = row.IsNull("whse") ? string.Empty : row.Field <string>("whse");
            entity.price        = row.IsNull("price") ? decimal.Zero : row.Field <decimal>("price");
            entity.eachfl       = row.Field <bool>("eachfl");
            entity.bundleid     = row.IsNull("bundleid") ? string.Empty : row.Field <string>("bundleid");
            entity.iSecurity    = row.IsNull("iSecurity") ? 0 : row.Field <int>("iSecurity");
            entity.setprevfl    = row.Field <bool>("setprevfl");
            entity.getbundlefl  = row.Field <bool>("getbundlefl");
            entity.userfield    = row.IsNull("userfield") ? string.Empty : row.Field <string>("userfield");
            return(entity);
        }