48 lines
1.3 KiB
C#
48 lines
1.3 KiB
C#
using Microsoft.AspNetCore.Components;
|
|
using ShopOnline.Models.Dtos;
|
|
using ShopOnline.Web.Services.Contracts;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace ShopOnline.Web.Pages
|
|
{
|
|
public class ProductDetailsBase : ComponentBase
|
|
{
|
|
[Parameter]
|
|
public int Id { get; set; }
|
|
[Inject]
|
|
public IProductService ProductService { get; set; }
|
|
[Inject]
|
|
public IShoppingCartService ShoppingCartService { get; set; }
|
|
[Inject]
|
|
public NavigationManager NavigationManager { get; set; }
|
|
public ProductDto Product { get; set; }
|
|
public string ErrorMessage { get; set; }
|
|
|
|
protected override async Task OnInitializedAsync()
|
|
{
|
|
try
|
|
{
|
|
Product = await ProductService.GetItem(Id);
|
|
}
|
|
catch(Exception ex)
|
|
{
|
|
ErrorMessage = ex.Message;
|
|
}
|
|
}
|
|
|
|
protected async Task AddToCart_Click(CartItemToAddDto cartItemToAddDto)
|
|
{
|
|
try
|
|
{
|
|
var cartItemDto = await ShoppingCartService.AddItem(cartItemToAddDto);
|
|
NavigationManager.NavigateTo("/ShoppingCart");
|
|
}
|
|
catch (Exception)
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|