mirror of
https://github.com/stokebob/BealeEngineering.git
synced 2026-03-21 07:37:16 +00:00
31 lines
711 B
C#
31 lines
711 B
C#
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;
|
|
using System.Configuration;
|
|
using BealeEngineering.Core;
|
|
|
|
namespace BealeEngineering.Accounts
|
|
{
|
|
public partial class Form1 : Form
|
|
{
|
|
public Form1()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void button1_Click(object sender, EventArgs e)
|
|
{
|
|
string conString = ConfigurationManager.ConnectionStrings["BealeEngSQLDb"].ToString();
|
|
|
|
var inst = new Core.Test.Autoexec(conString);
|
|
inst.Start();
|
|
}
|
|
}
|
|
}
|