1

fix GroupDelete

Co-Authored-By: Talha Caliskan <killerber4t@users.noreply.github.com>
This commit is contained in:
tomvahl
2020-03-20 15:09:27 +01:00
parent c1ce06d60f
commit b6c013e254
3 changed files with 15 additions and 8 deletions

View File

@ -8,8 +8,11 @@ import org.springframework.context.annotation.Configuration;
@Configuration
public class Gruppen2Config {
@Autowired
GroupService groupService;
@Autowired
EventService eventService;
final GroupService groupService;
final EventService eventService;
public Gruppen2Config(GroupService groupService, EventService eventService) {
this.groupService = groupService;
this.eventService = eventService;
}
}