11 lines
229 B
C#
11 lines
229 B
C#
|
using NG_2023_Kanban.DataLayer.Entities;
|
||
|
|
||
|
namespace NG_2023_Kanban.BusinessLayer.Interfaces
|
||
|
{
|
||
|
public interface IUserService
|
||
|
{
|
||
|
Task<User> LoginAsync(User user);
|
||
|
Task<User> RegisterAsync(User user);
|
||
|
}
|
||
|
}
|