backend/buisnesslogic/src/main/java/com/plannaplan/services/CourseService.java

31 lines
694 B
Java
Raw Normal View History

2020-07-25 10:56:11 +02:00
package com.plannaplan.services;
2020-08-08 14:14:42 +02:00
import java.util.List;
2020-08-05 21:29:48 +02:00
import com.plannaplan.entities.Course;
2020-07-25 10:56:11 +02:00
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;
2020-08-05 21:29:48 +02:00
public Course getCourseByName(String name) {
return this.repo.findByName(name);
}
2020-08-06 14:32:41 +02:00
2020-08-08 14:14:42 +02:00
public List<Course> getAllCourses() {
return this.repo.findAll();
}
2020-08-06 14:32:41 +02:00
public void save(Course course) {
this.repo.save(course);
}
2020-09-04 16:24:00 +02:00
public int getCoursesAmmount(){
return (int)this.repo.count();
}
2020-07-25 10:56:11 +02:00
}