first commit

This commit is contained in:
2026-03-22 00:29:34 +01:00
commit c16b4e3933
1729 changed files with 162013 additions and 0 deletions
@@ -0,0 +1,21 @@
using BethanysPieShopHRM.Shared.Domain;
using Microsoft.AspNetCore.Components;
namespace Webshop.App.Components
{
public partial class EmployeeCard
{
[Parameter]
public Employee Employee { get; set; } = default! ;
[Parameter]
public EventCallback<Employee> EmployeeQuickViewClicked { get; set; }
protected override void OnInitialized()
{
if (string.IsNullOrEmpty(Employee.LastName))
{
throw new Exception("Last Name can't be empty");
}
}
}
}