Beispiel #1
0
        public CtxService(CtxContext _context = null, string CID_ = "")
        {
            CID = CID_.Trim();

            if (CID.Length < 6)
            {
                throw new Exception("CID incorrect length");
            }

            context = (_context != null) ? _context : getContext(CID);
        }