Lecturer +

This commit is contained in:
Filip Izydorczyk
2020-07-25 10:21:42 +02:00
parent 8b5d73a5dd
commit 3c026115fe
5 changed files with 82 additions and 1 deletions

View File

@ -0,0 +1,12 @@
package com.plannaplan.repositories;
import com.plannaplan.entities.Lecturer;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface LecturerRepository extends JpaRepository<Lecturer, Long> {
}