Exemple #1
0
        /// <summary>
        /// Description:
        ///     none
        ///	Arguments:
        ///		none
        ///	Exceptions:
        ///		none
        ///	Return:
        ///		none
        /// </summary>
        protected l3.cargo.corba.CaseManager GetCaseManager()
        {
            m_Host = GetHost();

            l3.cargo.corba.CaseManager m_CaseMgr = m_Host.getCaseManager();

            return(m_CaseMgr);
        }
Exemple #2
0
 /// <summary>
 /// Description:
 ///     none
 ///	Arguments:
 ///		none
 ///	Exceptions:
 ///		none
 ///	Return:
 ///		none
 /// </summary>
 public int GetMaxManifestPerCase()
 {
     try
     {
         l3.cargo.corba.CaseManager caseMgr = GetCaseManager();
         return(caseMgr.getMaxManifestPerCase());
     }
     catch (NullReferenceException exp)
     {
         // Log the error
         throw exp;
     }
 }