예제 #1
0
            public AdjudicationRequestRow AddAdjudicationRequestRow(string NameOfApplicant, string Village_CityName)
            {
                AdjudicationRequestRow rowAdjudicationRequestRow = ((AdjudicationRequestRow)(this.NewRow()));

                rowAdjudicationRequestRow.ItemArray = new object[] {
                    null,
                    NameOfApplicant,
                    Village_CityName
                };
                this.Rows.Add(rowAdjudicationRequestRow);
                return(rowAdjudicationRequestRow);
            }
예제 #2
0
 public AdjudicationRequestRowChangeEvent(AdjudicationRequestRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
예제 #3
0
 public void RemoveAdjudicationRequestRow(AdjudicationRequestRow row)
 {
     this.Rows.Remove(row);
 }
예제 #4
0
 public void AddAdjudicationRequestRow(AdjudicationRequestRow row)
 {
     this.Rows.Add(row);
 }
예제 #5
0
 public void RemoveAdjudicationRequestRow(AdjudicationRequestRow row) {
     this.Rows.Remove(row);
 }
예제 #6
0
 public AdjudicationRequestRowChangeEvent(AdjudicationRequestRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
예제 #7
0
 public void AddAdjudicationRequestRow(AdjudicationRequestRow row) {
     this.Rows.Add(row);
 }
예제 #8
0
 public ValuationSheetRow AddValuationSheetRow(
             AdjudicationRequestRow parentAdjudicationRequestRowByFK_ValuationSheet_AdjudicationRequest, 
             System.Guid ValuationFormId, 
             int DistrictCode, 
             int TalukaCode, 
             int VillageCode, 
             string SchemeType, 
             decimal EstimatedPrice, 
             bool IsConstructedProperty, 
             string SchemeNo, 
             string PlotNo, 
             decimal AreaOfPlot, 
             decimal AreaOfConstruction, 
             string TypeOfLand, 
             decimal InternalElectrificationRate, 
             decimal DevelopmentRate, 
             decimal OtherFeeRate, 
             decimal SpecialDeductionRate, 
             int YearOfConstruction, 
             decimal LiftExpense, 
             decimal LandRate, 
             decimal ValueOfLand, 
             decimal InternalElectrificationExpense, 
             decimal DevelopmentExpense, 
             decimal OtherFees, 
             decimal SpecialDeduction, 
             System.DateTime ValuationDate, 
             decimal EstimatedPriceOfConstruction, 
             decimal LifeOfConstruction, 
             decimal Depreciation, 
             decimal NetPrice, 
             decimal ValueOfConstruction, 
             decimal ValuationOfConstruction, 
             decimal StampDuty, 
             decimal StampDutyRate, 
             string Remarks) {
     ValuationSheetRow rowValuationSheetRow = ((ValuationSheetRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             null,
             ValuationFormId,
             DistrictCode,
             TalukaCode,
             VillageCode,
             SchemeType,
             EstimatedPrice,
             IsConstructedProperty,
             SchemeNo,
             PlotNo,
             AreaOfPlot,
             AreaOfConstruction,
             TypeOfLand,
             InternalElectrificationRate,
             DevelopmentRate,
             OtherFeeRate,
             SpecialDeductionRate,
             YearOfConstruction,
             LiftExpense,
             LandRate,
             ValueOfLand,
             InternalElectrificationExpense,
             DevelopmentExpense,
             OtherFees,
             SpecialDeduction,
             ValuationDate,
             EstimatedPriceOfConstruction,
             LifeOfConstruction,
             Depreciation,
             NetPrice,
             ValueOfConstruction,
             ValuationOfConstruction,
             StampDuty,
             StampDutyRate,
             Remarks};
     if ((parentAdjudicationRequestRowByFK_ValuationSheet_AdjudicationRequest != null)) {
         columnValuesArray[0] = parentAdjudicationRequestRowByFK_ValuationSheet_AdjudicationRequest[0];
     }
     rowValuationSheetRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowValuationSheetRow);
     return rowValuationSheetRow;
 }
예제 #9
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;
 }