2018-12-18 22:18:06 +01:00
|
|
|
module d_webservice_example.component_registration;
|
|
|
|
|
2018-12-21 21:22:06 +01:00
|
|
|
import aermicioi.aedi;
|
2018-12-18 22:18:06 +01:00
|
|
|
|
|
|
|
void registerComponents(ConfigurableContainer container) @safe
|
|
|
|
{
|
2018-12-21 21:22:06 +01:00
|
|
|
import d_webservice_example.business.todo_service : TodoRepository, TodoService;
|
|
|
|
import d_webservice_example.controller.todo_controller : TodoController;
|
|
|
|
import d_webservice_example.dataaccess.in_memory_todo_repository : InMemoryTodoRepository;
|
|
|
|
|
|
|
|
container.configure.register!(TodoRepository, InMemoryTodoRepository);
|
|
|
|
container.configure.register!TodoService.autowire;
|
|
|
|
container.configure.register!TodoController.autowire;
|
2018-12-18 22:18:06 +01:00
|
|
|
}
|