2016-01-06 20:28:25 +01:00
|
|
|
/**
|
|
|
|
* Poodinis Dependency Injection Framework
|
|
|
|
* Copyright 2014-2016 Mike Bierlee
|
|
|
|
* This software is licensed under the terms of the MIT license.
|
|
|
|
* The full terms of the license can be found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import poodinis;
|
|
|
|
|
|
|
|
interface Database{};
|
|
|
|
class RelationalDatabase : Database {}
|
|
|
|
|
|
|
|
class DataWriter {
|
|
|
|
@Autowire
|
2016-02-09 21:06:07 +01:00
|
|
|
private Database database; // Automatically injected when class is resolved
|
2016-01-06 20:28:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void main() {
|
2016-08-08 22:17:17 +02:00
|
|
|
auto dependencies = new shared DependencyContainer();
|
2016-01-06 20:28:25 +01:00
|
|
|
dependencies.register!DataWriter;
|
|
|
|
dependencies.register!(Database, RelationalDatabase);
|
|
|
|
|
|
|
|
auto writer = dependencies.resolve!DataWriter;
|
|
|
|
}
|