Beispiel #1
0
        public List <COMPANIEDC> GetCompaniesByRmags(String Rmags)
        {
            DBConnection      objConnection       = new DBConnection();
            COMPANIES_RMAGDA  objCOMPANIES_RMAGDA = new COMPANIES_RMAGDA();
            List <COMPANIEDC> objCOMPANIEDC       = null;

            try
            {
                objConnection.Open(false);
                objCOMPANIEDC = objCOMPANIES_RMAGDA.GetCompaniesByRmags(Rmags, objConnection);
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                objConnection.Close();
            }
            return(objCOMPANIEDC);
        }