22 lines
567 B
C#
22 lines
567 B
C#
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");
|
|
}
|
|
}
|
|
}
|
|
}
|