Ejemplo n.º 1
0
        public static Arcustomerglfetchresults BuildArcustomerglfetchresultsFromRow(DataRow row)
        {
            Arcustomerglfetchresults entity = new Arcustomerglfetchresults();

            entity.custno              = row.IsNull("custno") ? decimal.Zero : row.Field <decimal>("custno");
            entity.arcontrolglacct     = row.IsNull("arcontrolglacct") ? string.Empty : row.Field <string>("arcontrolglacct");
            entity.arcontrolglacctdesc = row.IsNull("arcontrolglacctdesc") ? string.Empty : row.Field <string>("arcontrolglacctdesc");
            entity.bankglacct          = row.IsNull("bankglacct") ? string.Empty : row.Field <string>("bankglacct");
            entity.bankglacctdesc      = row.IsNull("bankglacctdesc") ? string.Empty : row.Field <string>("bankglacctdesc");
            entity.discountglacct      = row.IsNull("discountglacct") ? string.Empty : row.Field <string>("discountglacct");
            entity.discountglacctdesc  = row.IsNull("discountglacctdesc") ? string.Empty : row.Field <string>("discountglacctdesc");
            entity.incomeglacct        = row.IsNull("incomeglacct") ? string.Empty : row.Field <string>("incomeglacct");
            entity.incomeglacctdesc    = row.IsNull("incomeglacctdesc") ? string.Empty : row.Field <string>("incomeglacctdesc");
            entity.user1     = row.IsNull("user1") ? string.Empty : row.Field <string>("user1");
            entity.user2     = row.IsNull("user2") ? string.Empty : row.Field <string>("user2");
            entity.user3     = row.IsNull("user3") ? string.Empty : row.Field <string>("user3");
            entity.user4     = row.IsNull("user4") ? string.Empty : row.Field <string>("user4");
            entity.user5     = row.IsNull("user5") ? string.Empty : row.Field <string>("user5");
            entity.user6     = row.Field <decimal?>("user6");
            entity.user7     = row.Field <decimal?>("user7");
            entity.user8     = row.Field <DateTime?>("user8");
            entity.user9     = row.Field <DateTime?>("user9");
            entity.rowidArsc = row.Field <byte[]>("rowid-arsc").ToStringEncoded();
            entity.userfield = row.IsNull("userfield") ? string.Empty : row.Field <string>("userfield");
            return(entity);
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Update a database row from a class
 /// </summary>
 public static void UpdateRowFromArcustomerglfetchresults(ref DataRow row, Arcustomerglfetchresults entity)
 {
     row.SetField("custno", entity.custno);
     row.SetField("arcontrolglacct", entity.arcontrolglacct);
     row.SetField("arcontrolglacctdesc", entity.arcontrolglacctdesc);
     row.SetField("bankglacct", entity.bankglacct);
     row.SetField("bankglacctdesc", entity.bankglacctdesc);
     row.SetField("discountglacct", entity.discountglacct);
     row.SetField("discountglacctdesc", entity.discountglacctdesc);
     row.SetField("incomeglacct", entity.incomeglacct);
     row.SetField("incomeglacctdesc", entity.incomeglacctdesc);
     row.SetField("user1", entity.user1);
     row.SetField("user2", entity.user2);
     row.SetField("user3", entity.user3);
     row.SetField("user4", entity.user4);
     row.SetField("user5", entity.user5);
     row.SetField("user6", entity.user6);
     row.SetField("user7", entity.user7);
     row.SetField("user8", entity.user8);
     row.SetField("user9", entity.user9);
     row.SetField("rowid-arsc", entity.rowidArsc.ToByteArray());
     row.SetField("userfield", entity.userfield);
 }