source: iknow-api/Services/Interfaces/IUserService.cs@ d025ba3

Last change on this file since d025ba3 was 9a57e89, checked in by imbrsk <boris696boris@…>, 11 months ago

Refactor user management: update models, repositories, and services; remove obsolete files

  • Property mode set to 100644
File size: 351 bytes
RevLine 
[9a57e89]1using System.Threading;
2using System.Threading.Tasks;
3using iknow_api.Core.Models;
[2859225]4
5namespace iknow_api.Core.Interfaces
6{
7 public interface IUserService
8 {
[9a57e89]9 Task<User> AddUserAsync(User user, CancellationToken cancellationToken = default);
10 Task<int> GetUserByIdAsync(int id, CancellationToken cancellationToken = default);
[2859225]11 }
12}
Note: See TracBrowser for help on using the repository browser.