AdminForm.cs 948 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. namespace BeautySaloon
  11. {
  12. public partial class AdminForm : Form
  13. {
  14. public AdminForm()
  15. {
  16. InitializeComponent();
  17. }
  18. private void ServiceButton_Click(object sender, EventArgs e)
  19. {
  20. ServiceForm form = new ServiceForm();
  21. form.Show();
  22. this.Close();
  23. }
  24. private void ExitButton_Click(object sender, EventArgs e)
  25. {
  26. AuthForm form = new AuthForm();
  27. form.Show();
  28. this.Close();
  29. }
  30. private void klientButton_Click(object sender, EventArgs e)
  31. {
  32. AdmKlientForm form = new AdmKlientForm();
  33. form.Show();
  34. this.Close();
  35. }
  36. }
  37. }