Esempio n. 1
0
        public static Oecopyquoteresults BuildOecopyquoteresultsFromRow(DataRow row)
        {
            Oecopyquoteresults entity = new Oecopyquoteresults();

            entity.neworderno = row.IsNull("neworderno") ? 0 : row.Field <int>("neworderno");
            return(entity);
        }
Esempio n. 2
0
 /// <summary>
 /// Update a database row from a class
 /// </summary>
 public static void UpdateRowFromOecopyquoteresults(ref DataRow row, Oecopyquoteresults entity)
 {
     row.SetField("neworderno", entity.neworderno);
 }