예제 #1
0
 private void authEnterButton_Click(object sender, RoutedEventArgs e)
 {
     if (repoUser.Authorisation(authLogin.Text, authPassword.Text))
     {
         new ManagementWindow().Show();
         this.Close();
     }
     else
     {
         MessageBox.Show("Пользователь с такими данными не найден");
     }
 }