public bool CheckCalloutConcurrency(SincroBase bob)
        {
            bool res = bob.CheckConcurrency();

            return(res);
        }
		public bool CheckCalloutConcurrency (SincroBase bob)
		{
			bool res = bob.CheckConcurrency ();
			return res;
		}
        public SynchRes CheckContextTransition(Type type)
        {
            SincroBase bob = (SincroBase)Activator.CreateInstance(type);

            return(bob.CheckContext(Thread.CurrentContext));
        }