package no.niths.services.school.interfaces; import no.niths.domain.school.Locker; import no.niths.services.interfaces.GenericService; /** * Service Class for Locker * * <p> * Inherits the basic CRUD actions * </p> */ public interface LockerService extends GenericService<Locker> {}