public MoneyReportDetailRow AddMoneyReportDetailRow(MoneyReportRow parentMoneyReportRowByMoneyReport_MoneyReportDetail, string STT, string Khách_hàng, string Tổng_tiền) {
     MoneyReportDetailRow rowMoneyReportDetailRow = ((MoneyReportDetailRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             null,
             STT,
             Khách_hàng,
             Tổng_tiền};
     if ((parentMoneyReportRowByMoneyReport_MoneyReportDetail != null)) {
         columnValuesArray[0] = parentMoneyReportRowByMoneyReport_MoneyReportDetail[0];
     }
     rowMoneyReportDetailRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowMoneyReportDetailRow);
     return rowMoneyReportDetailRow;
 }
 public void AddMoneyReportRow(MoneyReportRow row) {
     this.Rows.Add(row);
 }
 public void RemoveMoneyReportRow(MoneyReportRow row) {
     this.Rows.Remove(row);
 }
 public MoneyReportRowChangeEvent(MoneyReportRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }