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 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. }