五丰称屠宰重客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

18 lines
489 B

using System;
using System.Windows.Forms;
using Forks.EnterpriseServices.BusinessInterfaces;
namespace B3ButcherWeightClient {
static class Program {
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main() {
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
BIFactory.Init(new DmoTransactionPlugin());
Application.Run(new Login());
}
}
}