Ejemplo n.º 1
0
            public BRFYXXRow AddBRFYXXRow(string 床号, string 住院号, string 姓名, string 病室, string 入院日期, string 补交费用, string 已预交, string 总费用, string 余额)
            {
                BRFYXXRow rowBRFYXXRow = ((BRFYXXRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    床号,
                    住院号,
                    姓名,
                    病室,
                    入院日期,
                    补交费用,
                    已预交,
                    总费用,
                    余额
                };
                rowBRFYXXRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowBRFYXXRow);
                return(rowBRFYXXRow);
            }
Ejemplo n.º 2
0
 public BRFYXXRowChangeEvent(BRFYXXRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Ejemplo n.º 3
0
 public void RemoveBRFYXXRow(BRFYXXRow row)
 {
     this.Rows.Remove(row);
 }
Ejemplo n.º 4
0
 public void AddBRFYXXRow(BRFYXXRow row)
 {
     this.Rows.Add(row);
 }