package com.stileeducation.markr.repository; import com.stileeducation.markr.entity.Test; import org.springframework.data.jpa.repository.JpaRepository; import java.util.Optional; public interface TestRepository extends JpaRepository { Optional findByTestId(String testId); }