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.

пре 3 година
пре 3 година
пре 3 година
пре 3 година
пре 3 година
12345678910111213141516
  1. using Diligent.WebAPI.Contracts.DTOs.User;
  2. namespace Diligent.WebAPI.Business.Services.Interfaces
  3. {
  4. public interface IUserService
  5. {
  6. Task<IEnumerable<User?>> GetAll();
  7. Task<User> GetById(int id);
  8. Task<User> GetByEmail(string email);
  9. Task CreateUser(CreateUserRequestDto model);
  10. Task<bool?> ToggleEnable(User user);
  11. Task RemoveUser(User user);
  12. Task<ServiceResponseDTO<object>> SendRegistrationLink(InviteDTO invite);
  13. Task<User> GetFirst();
  14. }
  15. }