using MySql.Data.MySqlClient; 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 it_projekt { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void searchBtn_Click(object sender, EventArgs e) { } private void loginBtn_Click(object sender, EventArgs e) { LoadUsersFromTable("root",""); } public static void LoadUsersFromTable(string user, string password) { Database test = new Database(user, password); MessageBox.Show(test.Person.Firstname); } private void dataGrid_CellContentClick(object sender, DataGridViewCellEventArgs e) { } } }