This commit is contained in:
2026-02-24 17:48:00 +01:00
commit d1fab1ab53
20 changed files with 1219 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
package com.example.hibernate.model.util;
@FunctionalInterface
public interface OperacionHibernate<R> {
public R ejecutar() throws Exception;
}