Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

IUserService.cs 252B

123456789101112
  1. namespace Diligent.WebAPI.Business.Services.Interfaces
  2. {
  3. public interface IUserService
  4. {
  5. Task<IEnumerable<User?>> GetAll();
  6. Task<User?> GetById(int id);
  7. Task CreateUser(CreateUserRequestDto model);
  8. }
  9. }