using UserManagement.Application.Dtos.Incomming; using UserManagement.Application.Dtos.Outgoing; namespace UserManagement.Application.Interfaces { public interface IUserRolesService { // CREATE ASSIGNMENT Task CreateAssignmentAsync(CreatingUserRolesDto creatingUserRolesDto); // REMOVE ROLE FORM USER Task RemoveRoleFromUserAsync(CreatingUserRolesDto creatingUserRolesDto); } }