ASP.NET MVC 5 を使用しています。AutoFac は初めてです。私はたくさんのクラスを持っていて、私がしなければならない各クラスのために、
builder.RegisterType<AuthenticationService>().As<IAuthenticationService>();
builder.RegisterType<IAuthenticationRepositry>().As<AuthenticationRepositry>();
...............................................................................
...............................................................................
各タイプの登録は時間がかかり、簡単に忘れてしまいます。コンポーネントを AutoFac に自動的に登録する方法はありますか?