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.services;
import com.plannaplan.repositories.LecturerRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class LecturerService {
@Autowired
LecturerRepository repo;
}