/** * Created by nhu on 15.06.15. */ class InjectionModule { constructor() { this._bindings = []; } initialize(){ } getBindings(){ return this._bindings; } _addBinding(name,type,bindingType){ return this._bindings.push({ name:name, type:type, bindingType: bindingType }); } } export default InjectionModule;