For e.g I have NacyModule like:
public class HomeModule : NancyModule {
public ILogger Logger { get; set; }
public HomeModule() {
Get["/"] = _ => "ok";
}
}
I now about constructor injection, it's work ok, but is there a way to use property injection
in Nancy Module(TinyIoC, Autofac doesn't matter)?