|
Last change
on this file since c7d4a59 was 277bd72, checked in by stefansaveski <stefansaveski19@…>, 11 months ago |
|
Refactor all namespaces to iknow_api
|
-
Property mode
set to
100644
|
|
File size:
306 bytes
|
| Line | |
|---|
| 1 | using iknow_api.Core.Models;
|
|---|
| 2 | namespace iknow_api.Repositories
|
|---|
| 3 | {
|
|---|
| 4 | public interface IUserRepository
|
|---|
| 5 | {
|
|---|
| 6 | Task<bool> UserExistsAsync(string username);
|
|---|
| 7 | Task<User?> GetUserByUsernameAsync(string username);
|
|---|
| 8 | Task AddUserAsync(User user);
|
|---|
| 9 | Task<int> GetUsersCountAsync();
|
|---|
| 10 | }
|
|---|
| 11 | } |
|---|
Note:
See
TracBrowser
for help on using the repository browser.