1234567891011121314151617181920212223242526272829303132333435363738394041 |
- 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 BeautySaloon
- {
- public partial class AdminForm : Form
- {
- public AdminForm()
- {
- InitializeComponent();
- }
- private void ServiceButton_Click(object sender, EventArgs e)
- {
- ServiceForm form = new ServiceForm();
- form.Show();
- this.Close();
- }
- private void ExitButton_Click(object sender, EventArgs e)
- {
- AuthForm form = new AuthForm();
- form.Show();
- this.Close();
- }
- private void klientButton_Click(object sender, EventArgs e)
- {
- AdmKlientForm form = new AdmKlientForm();
- form.Show();
- this.Close();
- }
- }
- }
|