@using BlazorBootstrap
@using Thor.Shared
@using Thor.Shared.Visit
@using Microsoft.AspNetCore.Components.Web
@if (Item is ItemTitle title)
{
@title.OrderId - @title.Label
}
else if (Item is ItemVerification verification)
{
@if (verification.Force == ItemVerification.VerificationForce.Optionnal)
{
}
else if (verification.Force == ItemVerification.VerificationForce.Recommandation)
{
}
else if (verification.Force == ItemVerification.VerificationForce.Mandatory)
{
}
@Item.OrderId
@Item.Label
@Item.References
}