private void OnAddProduct()
        {
            string            identifier = _identifierTextField.GetCurrentText();
            HMSIAPProductType type       = (HMSIAPProductType)_typeDropdown.GetCurrentValue();

            _productManipulator.AddProduct(identifier, type);
            _identifierTextField.ClearInput();
        }