Example #1
0
        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");
        }
Example #2
0
        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");
        }