public bool AddProducts(int productId, int userId)
 {
     basketService.AddProductToMyBasket(productId, userId);
     return(true);
 }