Example #1
0
 /// <summary>
 /// Update a database row from a class
 /// </summary>
 public static void UpdateRowFromRectransactioncriteria(ref DataRow row, Rectransactioncriteria entity)
 {
     row.SetField("co_num", entity.coNum);
     row.SetField("wh_num", entity.whNum);
     row.SetField("rt_num", entity.rtNum);
     row.SetField("searchType", entity.searchType);
     row.SetField("userfield", entity.userfield);
 }
Example #2
0
        public static Rectransactioncriteria BuildRectransactioncriteriaFromRow(DataRow row)
        {
            Rectransactioncriteria entity = new Rectransactioncriteria();

            entity.coNum      = row.IsNull("co_num") ? string.Empty : row.Field <string>("co_num");
            entity.whNum      = row.IsNull("wh_num") ? string.Empty : row.Field <string>("wh_num");
            entity.rtNum      = row.IsNull("rt_num") ? string.Empty : row.Field <string>("rt_num");
            entity.searchType = row.IsNull("searchType") ? 0 : row.Field <int>("searchType");
            entity.userfield  = row.IsNull("userfield") ? string.Empty : row.Field <string>("userfield");
            return(entity);
        }