コード例 #1
0
 public FeeMasterRowChangeEvent(FeeMasterRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
コード例 #2
0
 public void AddFeeMasterRow(FeeMasterRow row) {
     this.Rows.Add(row);
 }
コード例 #3
0
 public void RemoveFeeMasterRow(FeeMasterRow row) {
     this.Rows.Remove(row);
 }
コード例 #4
0
 public AdjudicationFeeDetailsRow AddAdjudicationFeeDetailsRow(AdjudicationRequestRow parentAdjudicationRequestRowByFK_AdjudicationFeeDetails_AdjudicationRequest, FeeMasterRow parentFeeMasterRowByFK_AdjudicationFeeDetails_FeeMaster, decimal Amount) {
     AdjudicationFeeDetailsRow rowAdjudicationFeeDetailsRow = ((AdjudicationFeeDetailsRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             null,
             null,
             Amount};
     if ((parentAdjudicationRequestRowByFK_AdjudicationFeeDetails_AdjudicationRequest != null)) {
         columnValuesArray[0] = parentAdjudicationRequestRowByFK_AdjudicationFeeDetails_AdjudicationRequest[0];
     }
     if ((parentFeeMasterRowByFK_AdjudicationFeeDetails_FeeMaster != null)) {
         columnValuesArray[1] = parentFeeMasterRowByFK_AdjudicationFeeDetails_FeeMaster[0];
     }
     rowAdjudicationFeeDetailsRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowAdjudicationFeeDetailsRow);
     return rowAdjudicationFeeDetailsRow;
 }