22 lines
467 B
C#
22 lines
467 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using CardReaderService;
|
|
|
|
namespace CardReaderServiceHost
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Service1 service1 = new Service1();
|
|
service1.Start(null);
|
|
Console.WriteLine("Service Running...");
|
|
Console.ReadLine();
|
|
service1.Stop();
|
|
}
|
|
}
|
|
}
|