/// <summary>
 /// Returns an indication that whether the user is in a specific role
 /// </summary>
 public async Task ChangeUserRoleAsync(int userId, string role)
 {
     await _rolesRepository.ChangeUserRoleAsync(userId, role);
 }