mirror of
https://github.com/LOBSTERVOVA/Tennis-Site.git
synced 2026-04-17 17:40:49 +03:00
13 lines
325 B
Java
13 lines
325 B
Java
package com.example.dateplanner.services;
|
|
|
|
import com.example.dateplanner.repositories.OrganizationRepository;
|
|
import lombok.AllArgsConstructor;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
@Service
|
|
@AllArgsConstructor
|
|
public class OrganizationService {
|
|
private final OrganizationRepository organizationRepository;
|
|
|
|
}
|