我正在尝试找出如何使用ninject绑定(bind)这样的东西的正确方法。interfaceIMainService{voidDoStuff();}interfaceIOtherService{voidDoSomeMagic();}abstractclassBaseClass{//manystuffhere}classMainClass:BaseClass,IMainService{publicMainClass(IOtherServices){}publicvoidDoStuff(){thrownewNotImplementedException();}//domanyotherth