/
TimofeyNovv
/
To-do-List
Обзор
Документация
Войти
/
TimofeyNovv
/
To-do-List
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
updates
src/main/java/com/example/ToDoList/service/UserService.java
12 строк
297 B
TimofeyNov
add updateDescription to task
26 сен 2025, 19:40
26 сен 2025, 19:40
fb39b82
Код
Авторство
О чём код?
package com.example.ToDoList.service; import com.example.ToDoList.dto.user.UserResponseDto; public interface UserService { UserResponseDto findById(Integer id); UserResponseDto findByEmail(String email); void deleteUserById(Integer id); void deleteUserByEmail(String email); }