15 lines
439 B
C#
15 lines
439 B
C#
using UserManagement.Application.Dtos.Incomming;
|
|
using UserManagement.Application.Dtos.Outgoing;
|
|
|
|
namespace UserManagement.Application.Interfaces
|
|
{
|
|
public interface IUserRolesService
|
|
{
|
|
// CREATE ASSIGNMENT
|
|
Task<bool> CreateAssignmentAsync(CreatingUserRolesDto creatingUserRolesDto);
|
|
|
|
// REMOVE ROLE FORM USER
|
|
Task<bool> RemoveRoleFromUserAsync(CreatingUserRolesDto creatingUserRolesDto);
|
|
}
|
|
}
|