Remove "Get" statement from example docs

This commit is contained in:
james7132
2017-02-11 20:12:53 +00:00
parent 73f00eb0d7
commit 9609520a53

View File

@@ -32,10 +32,9 @@ public class ModuleB
[DontInject]
public NotificationService { get; set; }
public ModuleB(CommandService commands, IDependencyMap map)
public ModuleB(CommandService commands)
{
Commands = commands;
_notification = map.Get<NotificationService>();
}
}