You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IUserService.cs 327B

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