Checkpoint - started to create database entities

This commit is contained in:
Filip Izydorczyk
2020-07-23 17:27:20 +02:00
parent 481922dbd3
commit c96d6d8380
24 changed files with 339 additions and 107 deletions

View File

@ -0,0 +1,12 @@
package com.plannaplan.services;
import com.plannaplan.repositories.GroupRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class GroupService {
@Autowired
private GroupRepository repo;
}