using Brovi07.session1; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Brovi07 { public partial class AutorizationForm : Form { public AutorizationForm() { InitializeComponent(); } private void tovarButton_Click(object sender, EventArgs e) { tovarForm form = new tovarForm(); form.Show(); this.Hide(); } private void editTovarButton_Click(object sender, EventArgs e) { authForm form = new authForm(); form.Show(); this.Hide(); } private void saleTovarButton_Click(object sender, EventArgs e) { AuthSaleForm form = new AuthSaleForm(); form.Show(); this.Hide(); } private void exitButton_Click(object sender, EventArgs e) { this.Close(); Application.Exit(); } } }