Compare commits

..

No commits in common. "883c8786628e1fa8110affa460621c8dc115bd07" and "ab56a26f579cf78bc5a406127f18a78719d887a4" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ class MovimentiRepositoryImpl : MovimentiRepository {
// Cerca la lista di movimenti // Cerca la lista di movimenti
MovimentiDao.find { MovimentiTable.idTessera eq idTessera } MovimentiDao.find { MovimentiTable.idTessera eq idTessera }
.orderBy(MovimentiTable.dataMovimento to sortOrder, MovimentiTable.id to sortOrder) .orderBy(MovimentiTable.dataMovimento to sortOrder)
.limit(limit.toInt()) .limit(limit.toInt())
.offset(offset) .offset(offset)
.toList() // Restituisce la lista dei movimenti .toList() // Restituisce la lista dei movimenti

View File

@ -21,7 +21,7 @@ class ViewPrenotazioniPastiRepositoryImpl : ViewPrenotazioniPastiRepository {
} }
// Cerca la lista di prenotazioni // Cerca la lista di prenotazioni
ViewPrenotazioniPastiDao.find { ViewPrenotazioniPastiTable.idTessera eq idTessera } ViewPrenotazioniPastiDao.find { ViewPrenotazioniPastiTable.idTessera eq idTessera }
.orderBy(ViewPrenotazioniPastiTable.giorno to sortOrder, ViewPrenotazioniPastiTable.id to sortOrder) .orderBy(ViewPrenotazioniPastiTable.giorno to sortOrder)
.limit(limit.toInt()) .limit(limit.toInt())
.offset(offset) .offset(offset)
.toList() // Restituisce la lista delle prenotazioni .toList() // Restituisce la lista delle prenotazioni