Group.prototype.findByIdWithoutType = function findByIdWithoutType(id, type) {
    var returnElem = null;

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