@using salesbook.Shared.Core.Dto @inject IDialogService Dialog
@UtilityString.FormatString(Contact.PersonaRif).TitleCase
@if (Contact.Mansione is not null) { @UtilityString.FormatString(Contact.Mansione).SentenceCase }
@if (!Contact.NumCellulare.IsNullOrEmpty()) { } @if (!Contact.EMail.IsNullOrEmpty()) { }
@code { [Parameter] public PersRifDTO Contact { get; set; } = new(); private async Task OpenPersRifForm() { var result = await ModalHelpers.OpenPersRifForm(Dialog, Contact); } }