public async Task <bool> AddRoleAsync(int userId, int roleId)
 {
     return(await _appUserRepository.AddRoleAsync(userId, roleId));
 }