using System;

namespace SinochemInternetPlusApp
{
    class PumpOnFuelingScannerCommunicator : ICommunicator
    {
        public bool IsStarted
        {
            get { throw new NotImplementedException(); }
        }

        public bool Start()
        {
            throw new NotImplementedException();
        }
    }
}