Ninject-A basic reposity style setup

PHOTO EMBED

Fri Sep 08 2023 02:51:34 GMT+0000 (Coordinated Universal Time)

Saved by @Danh

public interface IWidgetService  
{
    int CountWidgets();
}

public class WidgetService : IWidgetService  
{
    public int CountWidgets()
    {
        // Lets skip the database for now :) 
        return 5;
    }
}
content_copyCOPY

https://www.martinsteel.co.uk/blog/2014/Ninject-dependency-injection-for-windows-services