static async getDetailProductData()

in src/app/ContosoTraders.Ui.Website/src/services/productsService.ts [29:32]


    static async getDetailProductData(productId) {
        const response = await axios.get(`${this.API_PREFIX}/products/${productId}`);
        return response && response.data ? response.data : null;
    };