Initial commit carried over from private repo. This is V2.
This commit is contained in:
@ -0,0 +1,9 @@
|
||||
using MessengerApi.Db.Entities;
|
||||
|
||||
namespace MessengerApi.Db.Contracts.Repositories
|
||||
{
|
||||
public interface IUserRepository : IRepository<User>
|
||||
{
|
||||
User SingleByApiKeyAndEnabled(Guid id, bool enabled);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user