2010-03-02 17:56:21 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using Tanshu.Accounts.Helpers;
|
2011-01-30 07:14:05 +00:00
|
|
|
|
using Tanshu.Accounts.Repository;
|
2011-02-04 19:30:55 +00:00
|
|
|
|
using Tanshu.Accounts.Entities;
|
2010-03-02 17:56:21 +00:00
|
|
|
|
|
|
|
|
|
namespace Tanshu.Accounts.PointOfSale
|
|
|
|
|
{
|
|
|
|
|
static class Program
|
|
|
|
|
{
|
2011-01-30 07:14:05 +00:00
|
|
|
|
//private static readonly Tanshu.Logging.SqlLogger log = new Tanshu.Logging.SqlLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
|
2010-03-02 17:56:21 +00:00
|
|
|
|
|
|
|
|
|
[STAThread]
|
|
|
|
|
static void Main()
|
|
|
|
|
{
|
|
|
|
|
Application.EnableVisualStyles();
|
|
|
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
2011-01-30 07:14:05 +00:00
|
|
|
|
//log.Warn("Application Started");
|
2011-01-06 07:17:00 +00:00
|
|
|
|
Application.Run(new MainForm());
|
2011-01-30 07:14:05 +00:00
|
|
|
|
//log.Warn("Application Closed");
|
2010-03-02 17:56:21 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|