Ignore:
Timestamp:
10/22/25 13:20:23 (11 months ago)
Author:
stefansaveski <stefansaveski19@…>
Branches:
master
Children:
5b42c8d
Parents:
5aa102d (diff), 9a57e89 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

test

File:
1 edited

Legend:

Unmodified
Added
Removed
  • iknow-api/Services/Interfaces/IUserService.cs

    r5aa102d rd025ba3  
     1using System.Threading;
     2using System.Threading.Tasks;
     3using iknow_api.Core.Models;
    14
    25namespace iknow_api.Core.Interfaces
     
    47    public interface IUserService
    58    {
    6         Task<JsonContent> AddUser(JsonContent newUser);
     9        Task<User> AddUserAsync(User user, CancellationToken cancellationToken = default);
     10        Task<int> GetUserByIdAsync(int id, CancellationToken cancellationToken = default);
    711    }
    812}
Note: See TracChangeset for help on using the changeset viewer.