there are several issues with the same theme, but I could not solve my problem.
Error: Route.post() requires callback functions but got a [object Undefined] at R
Instead of this:
app.post('/user/all',Controller.Create);
You try for:
app.post('/user/all', function(req, res){ Controller.Create });