blob: 8515cb1eb939803d2247acc4a74f8c551692d9a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package com.blog.web.services;
import com.blog.web.dto.RegistrationDto;
import com.blog.web.models.UserEntity;
public interface UserService {
void saveUser(RegistrationDto registrationDto);
UserEntity findByEmail(String email);
UserEntity findByUsername(String username);
}
|