You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
465 B

2 years ago
  1. package com.ims.rallyModels.servicio.coche;
  2. import com.ims.rallyModels.modelo.CocheEntity;
  3. import com.ims.rallyModels.modelo.MaquetaEntity;
  4. import java.util.List;
  5. public interface ICocheServicio {
  6. public List<CocheEntity> listAll();
  7. public CocheEntity guardarCoche(CocheEntity maqueta);
  8. public CocheEntity obtenerCochePorId(Integer id);
  9. public CocheEntity actualizarCoche(CocheEntity maqueta);
  10. public void eliminarCoches(Integer id);
  11. }