Создал бд, модели, репозитории, сервисы.

Начал верстку главной страницы
This commit is contained in:
Lobstervova
2026-02-02 18:04:56 +03:00
parent 28af3af036
commit 8f319465da
85 changed files with 14927 additions and 8835 deletions

View File

@@ -0,0 +1,12 @@
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;
}