Exemplo n.º 1
0
 public function checkCompanyExist($request)
 {
     try {
         $company = $request->comapny;
         $mapper = new Administrator_Model_CompanyDataMapper();
         $result = $mapper->checkCompanyExist($company);
         return $result;
     } catch (Exception $ex) {
         Rdine_Logger_FileLogger::info($ex->getMessage());
         throw new Exception($ex->getMessage());
     }
 }