namespace Domain.Interface; public interface IUserRoleRepository { Task AddRoleAsync(int userId, int roleId); Task RemoveRoleAsync(int userId, int roleId); Task HasRoleAsync(int userId, int roleId); }