示例#1
0
文件: Client.cs 项目: wmalik/PACMANS
        void StartServices()
        {
            //Booking Service
            string serviceName = _username + "/" + Common.Constants.BOOKING_SERVICE_NAME;

            Helper.StartService(_username, _port, serviceName, _slotManager, typeof(IBookingService));
            Log.WriteToFile(_logfile, _username, "Started booking service");
        }
示例#2
0
文件: Client.cs 项目: wmalik/PACMANS
        void StartFacade()
        {
            //Facade Service
            string serviceName = _username + "/" + Common.Constants.CLIENT_FACADE_SERVICE;

            Helper.StartService(_username, _port, serviceName, this, typeof(IClientFacade));
            Log.WriteToFile(_logfile, _username, "Started Facade service");
        }