backend/buisnesslogic/src/main/java/com/plannaplan/services/CourseService.java
2020-07-25 10:56:11 +02:00

12 lines
288 B
Java

package com.plannaplan.services;
import com.plannaplan.repositories.CourseRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class CourseService {
@Autowired
private CourseRepository repo;
}