Exemplo n.º 1
0
        public static ResultDevice GetInstance()
        {
            if (null == _instance)
            {
                lock (PAD_LOCK)
                {
                    if (null == _instance)
                    {
                        _instance = new ResultDevice();
                    }
                }
            }

            return(_instance);
        }
 public Result()
 {
     _device = ResultDevice.GetInstance();
 }