示例#1
0
            public ydyRow AddydyRow(
                string 姓名,
                string 床号,
                string 住院号,
                string 条码号,
                string 送标本人,
                string 接收标本人签字,
                string bz1,
                string bz2,
                string bz3,
                string bz4,
                string bz5,
                string bz6,
                string bz7,
                string bz8,
                string bz9,
                string bz10,
                string 项目名称)
            {
                ydyRow rowydyRow = ((ydyRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    姓名,
                    床号,
                    住院号,
                    条码号,
                    送标本人,
                    接收标本人签字,
                    bz1,
                    bz2,
                    bz3,
                    bz4,
                    bz5,
                    bz6,
                    bz7,
                    bz8,
                    bz9,
                    bz10,
                    项目名称
                };
                rowydyRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowydyRow);
                return(rowydyRow);
            }
示例#2
0
 public ydyRowChangeEvent(ydyRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
示例#3
0
 public void RemoveydyRow(ydyRow row)
 {
     this.Rows.Remove(row);
 }
示例#4
0
 public void AddydyRow(ydyRow row)
 {
     this.Rows.Add(row);
 }