Changeset 9694de9 for iknow-api/Services/Interfaces/IUserService.cs
- Timestamp:
- 10/21/25 17:21:47 (11 months ago)
- Branches:
- master
- Children:
- aed1148
- Parents:
- 618be76
- File:
-
- 1 edited
-
iknow-api/Services/Interfaces/IUserService.cs (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
iknow-api/Services/Interfaces/IUserService.cs
r618be76 r9694de9 1 using System.Threading; 2 using System.Threading.Tasks; 3 using iknow_api.Core.Models; 1 4 2 5 namespace iknow_api.Core.Interfaces … … 4 7 public interface IUserService 5 8 { 6 Task<JsonContent> AddUser(JsonContent newUser); 9 Task<User> AddUserAsync(User user, CancellationToken cancellationToken = default); 10 Task<int> GetUserByIdAsync(int id, CancellationToken cancellationToken = default); 7 11 } 8 12 }
Note:
See TracChangeset
for help on using the changeset viewer.
