35 lines
922 B
C#
35 lines
922 B
C#
using DesktopTools.BusinessLogics;
|
|
using SecurityBusinessLogic.BusinessLogics;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace DepartmentPortalDesctop
|
|
{
|
|
/// <summary>
|
|
/// Форма входа в систему
|
|
/// </summary>
|
|
public partial class FormEnter : Form
|
|
{
|
|
public FormEnter()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void ButtonEnter_Click(object sender, EventArgs e)
|
|
{
|
|
try
|
|
{
|
|
Task.WaitAll(Task.Run(async () => await UserManager.GetInstance.LoginAsync(textBoxLogin.Text, textBoxPassword.Text)));
|
|
DialogResult = DialogResult.OK;
|
|
Close();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
ErrorMessanger.PrintErrorMessage("При аутентфикации возникла ошибка: ", new List<KeyValuePair<string, string>> { new KeyValuePair<string, string>("Аутентфикация", ex.Message) });
|
|
}
|
|
}
|
|
}
|
|
}
|