this.getUsersById = function(ids, cb){
        // Get user by ID
        this.coleccion.find({_id:{ "$in": ids } }, cb);
    };