private void backBtn_Click(object sender, EventArgs e)
        {
            _page.Controls.Clear();
            ProductTypePage productTypePage = new ProductTypePage();

            _page.Controls.Add(productTypePage);
        }
 public ProductInfoPage(ProductResponse product, string typeName, ProductTypePage page)
 {
     _product  = product;
     _typeName = typeName;
     _page     = page;
     InitializeComponent();
 }