Fibinger Ádám
2019-03-11 94fead6be729cfb23b657d853c5499709a3d27c4
1
2
3
4
5
6
7
package hu.unr.fiber.cardapi.interfaces;
 
import hu.unr.fiber.cardapi.hibernate.CardNotFoundException;
 
public interface CardDeleteInterface {
    public void delete(long id) throws CardNotFoundException;
}