in ControllerOne
$scope.displayReport = function( status ){
   statusCkeck( status ) ;
}
statusCkeck() ;  is in another controller -controllerTwo 
How can i call this function from one controller to another
i tried angular.element(document.getElementById('controllerTwo')).scope().statusCheck();
But it throwing error.
Please suggest
 
     
    