Group.prototype.findById = function findById(id) {
    var returnElem = null;

    _.each(this.childs, function (elem) {
        if (elem.id == id) {