I get your point - thanks. I think I explained it poorly. I meant I can call call model functions from the controller actions, something like:
public function view($request, $response, $args)
{
$return = OrderReturnQuery::create()->findPK($args['id']);
return $response->withJson($return);
}