Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
| 123456789101112 |
- namespace Diligent.WebAPI.Business.Services.Interfaces
- {
- public interface IUserService
- {
- Task<IEnumerable<User?>> GetAll();
-
- Task<User?> GetById(int id);
-
- Task CreateUser(CreateUserRequestDto model);
-
- }
- }
|