public DataSet LoadAccountsSectionSummary(RIInvoiceAccountsSection ObjAccountsSection)
 {
     Object[] parametes = new Object[]
     {
         ObjAccountsSection.TranRefNo,
         ObjAccountsSection.UserId
     };
     return(dataAccess.LoadDataSet(parametes, "P_RIINV_GetAccountsSectionSummary", "AccountsSectionSummary"));
 }
 public DataSet UpdateAccountsSectionSummary(RIInvoiceAccountsSection ObjAccountsSection)
 {
     Object[] parametes = new Object[]
     {
         ObjAccountsSection.TranRefNo,
         ObjAccountsSection.SpreadPeriodFrom,
         ObjAccountsSection.SpreadPeriodTo,
         ObjAccountsSection.Lock,
         ObjAccountsSection.Export,
         ObjAccountsSection.UserId
     };
     return(dataAccess.LoadDataSet(parametes, "P_RIINV_GetAccountsSectionSummaryUpdate", "AccountsSectionSummaryUpdate"));
 }