SE corrigen errores de sintaxis de menu

parent 48a7dc2c
......@@ -2,6 +2,8 @@ package ec.edu.espe.movilidad.MovilidadWS.Dao;
import ec.edu.espe.movilidad.MovilidadWS.Model.ModelUzyTMenu;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface DaoUzyTMenu extends JpaRepository<ModelUzyTMenu, Long> {
}
\ No newline at end of file
......@@ -9,13 +9,13 @@ import java.util.List;
public interface IServiceUzyTMenu {
public DtoUzyTMenu ListarPorID(Long id) throws NotFoundException;
DtoUzyTMenu ListarPorID(Long id) throws NotFoundException;
public List<DtoUzyTMenu> ListarRegistros();
List<DtoUzyTMenu> ListarRegistros();
public DtoUzyTMenu guardar(DtoUzyTMenu dtoUzyTMenu);
DtoUzyTMenu guardar(DtoUzyTMenu dtoUzyTMenu);
public DtoUzyTMenu editar(Long id, DtoUzyTMenu dtoUzyTMenu) throws NotFoundException;
DtoUzyTMenu editar(Long id, DtoUzyTMenu dtoUzyTMenu) throws NotFoundException;
void eliminar(Long id) throws NotFoundException;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment