Exemplo n.º 1
0
 /**
  * Update customer email and password by admin
  */
 public function EditCusEmailAndPassword($request)
 {
     try {
         $userservice = new Application_Service_Client();
         $status = $userservice->EditCusEmailAndPassword($request);
         return $status;
     } catch (Exception $ex) {
         Rdine_Logger_FileLogger::info($ex->getMessage());
         throw new Exception($ex->getMessage());
     }
 }