Add a controler for "User" (add and authenticate)
This commit is contained in:
10
Back/skydiveLogs-api.Data/Interface/IUserRepository.cs
Normal file
10
Back/skydiveLogs-api.Data/Interface/IUserRepository.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using skydiveLogs_api.Model;
|
||||
|
||||
|
||||
namespace skydiveLogs_api.Data.Interface
|
||||
{
|
||||
public interface IUserRepository : IRepository<User>
|
||||
{
|
||||
User GetByLogin(string login, string password);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user