Exemplo n.º 1
0
        static void Main(string[] args)
        {
            DatabaseServer server = new DatabaseServer(5454);

            server.Initialize();
            //var db = new eVoteModel();

            //Stopwatch stopwatch = new Stopwatch();


            //Console.WriteLine(DateTime.Now);
            //stopwatch.Start();

            //VoteCounter c = new VoteCounter(db.Polls.First());
            //c.CountVotes();

            //stopwatch.Stop();
            //Console.WriteLine(stopwatch.Elapsed);
            //Console.WriteLine(DateTime.Now);

            while (Console.ReadLine() != "q")
            {
            }
        }