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

37 lines
839 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;
import java.util.Optional;
2020-08-08 14:14:42 +02:00
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 Optional<Course> getCourseByName(String name) {
2020-08-05 21:29:48 +02:00
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();
}
public Course save(Course course) {
2020-08-06 14:32:41 +02:00
this.repo.save(course);
return course;
2020-08-06 14:32:41 +02:00
}
2020-09-04 16:24:00 +02:00
public void delete(Course course) {
this.repo.delete(course);
}
public int getCoursesAmmount() {
return (int) this.repo.count();
2020-09-04 16:24:00 +02:00
}
2020-07-25 10:56:11 +02:00
}