'use strict';
angular.module('bamboo.common').service('oopHelper', function() {
var self = this;
self.extend = function(Child, Parent) {
var F = function() {};
F.prototype = Parent.prototype;
Child.prototype = new F();
Child.prototype.constructor = Child;
Child.uber = Parent.prototype;
}
});