Example #1
0
 public void UpdateTempBankNominalLedgerEntry(TempBankNominalLedgerEntry tempBankNominalLedgerEntry)
 {
     _tempBankNominalLedgerEntryService.Update(tempBankNominalLedgerEntry);
     _unitofWork.SaveChanges();
 }
Example #2
0
 public void SaveTempBankNominalLedgerEntry(TempBankNominalLedgerEntry tempBankNominalLedgerEntry)
 {
     _tempBankNominalLedgerEntryService.Insert(tempBankNominalLedgerEntry);
     _unitofWork.SaveChanges();
 }