protected async Task DeleteActivityLog(int id) { bool?result = await DialogService.Confirm("Are you sure?", "DELETE ACTIVITY LOG", new ConfirmOptions() { OkButtonText = "Yes", CancelButtonText = "No", ShowClose = false }); if (result.Value == true) { var deletedNotification = await ActivityLogService.DeleteAsync(id); if (deletedNotification > 0) { } else { } } }