public void DeleteTenant_Handler()
        {
            // Delete a tenant
            // Get the first name and the last name of the tenant to be deleted
            string firstName = null;
            string lastName  = null;

            if (!terminalDevice.GetTenantName(ref firstName, ref lastName))
            {
                return;
            }
            TenantData.DeleteTenant(firstName, lastName);
        }