Exemplo n.º 1
0
        public ApiResponse <bool> AddToWishList(int productId, CurrencyTypeName CurrencyName)
        {
            var deviceNo = GetDeviceNo();
            var isSave   = _productServices.AddToWishList(productId, CurrencyName, deviceNo);

            return(ApiUtility.ApiSuccess <bool>(isSave, isSave ? "Wishlist item added successfully" : "Failed!!!"));
        }