Moved projects to their own separate subdirectories
This commit is contained in:
12
API/YABA.Service/Interfaces/IUserService.cs
Normal file
12
API/YABA.Service/Interfaces/IUserService.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System.Threading.Tasks;
|
||||
using YABA.Common.DTOs;
|
||||
|
||||
namespace YABA.Service.Interfaces
|
||||
{
|
||||
public interface IUserService
|
||||
{
|
||||
bool IsUserRegistered(string authProviderId);
|
||||
Task<UserDTO> RegisterUser(string authProviderId);
|
||||
int GetUserId(string authProviderId);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user