コード例 #1
0
ファイル: Apeiinvdettaxjur.g.cs プロジェクト: arentlog/web-ui
 /// <summary>
 /// Update a database row from a class
 /// </summary>
 public static void UpdateRowFromApeiinvdettaxjur(ref DataRow row, Apeiinvdettaxjur entity)
 {
     row.SetField("groupnm", entity.groupnm);
     row.SetField("groupseqno", entity.groupseqno);
     row.SetField("createddt", entity.createddt);
     row.SetField("invseqno", entity.invseqno);
     row.SetField("jurtype", entity.jurtype);
     row.SetField("jurname", entity.jurname);
     row.SetField("taxname", entity.taxname);
     row.SetField("taxableamt", entity.taxableamt);
     row.SetField("taxamount", entity.taxamount);
     row.SetField("taxrate", entity.taxrate);
     row.SetField("userfield", entity.userfield);
 }
コード例 #2
0
ファイル: Apeiinvdettaxjur.g.cs プロジェクト: arentlog/web-ui
        public static Apeiinvdettaxjur BuildApeiinvdettaxjurFromRow(DataRow row)
        {
            Apeiinvdettaxjur entity = new Apeiinvdettaxjur();

            entity.groupnm    = row.IsNull("groupnm") ? string.Empty : row.Field <string>("groupnm");
            entity.groupseqno = row.IsNull("groupseqno") ? 0 : row.Field <int>("groupseqno");
            entity.createddt  = row.Field <DateTime?>("createddt");
            entity.invseqno   = row.IsNull("invseqno") ? 0 : row.Field <int>("invseqno");
            entity.jurtype    = row.IsNull("jurtype") ? string.Empty : row.Field <string>("jurtype");
            entity.jurname    = row.IsNull("jurname") ? string.Empty : row.Field <string>("jurname");
            entity.taxname    = row.IsNull("taxname") ? string.Empty : row.Field <string>("taxname");
            entity.taxableamt = row.IsNull("taxableamt") ? decimal.Zero : row.Field <decimal>("taxableamt");
            entity.taxamount  = row.IsNull("taxamount") ? decimal.Zero : row.Field <decimal>("taxamount");
            entity.taxrate    = row.IsNull("taxrate") ? decimal.Zero : row.Field <decimal>("taxrate");
            entity.userfield  = row.IsNull("userfield") ? string.Empty : row.Field <string>("userfield");
            return(entity);
        }