Correccion de cosas .w. No estoy seguro que e hecho

This commit is contained in:
Daniel Cortes
2019-01-07 19:32:12 -03:00
parent 3ee8b5c10c
commit cb4ef76861
18 changed files with 1267 additions and 613 deletions

View File

@@ -47,6 +47,8 @@ public abstract class EfectivoDAO {
public abstract boolean updateEfectivo(Efectivo efectivo);
public abstract boolean deleteEfectivo(Efectivo efectivo);
public abstract int getTotalEfectivo(Caja caja);
protected List<Efectivo> efectivosFromResultSet(ResultSet rs) throws SQLException {
List<Efectivo> efectivoList = new ArrayList<>();
while (rs.next()) {