Exemplo n.º 1
0
            public MZFPDYRow AddMZFPDYRow(string 门诊号, string 病人姓名, string 收费日期, string 打印时间, string 发票号, string 总金额, string 科室, string 医生, string 收费员)
            {
                MZFPDYRow rowMZFPDYRow = ((MZFPDYRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    门诊号,
                    病人姓名,
                    收费日期,
                    打印时间,
                    发票号,
                    总金额,
                    科室,
                    医生,
                    收费员
                };
                rowMZFPDYRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowMZFPDYRow);
                return(rowMZFPDYRow);
            }
Exemplo n.º 2
0
 public MZFPDYRowChangeEvent(MZFPDYRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemplo n.º 3
0
 public void RemoveMZFPDYRow(MZFPDYRow row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 4
0
 public void AddMZFPDYRow(MZFPDYRow row)
 {
     this.Rows.Add(row);
 }