Implement the service layer with Ninject
The service layer holds the domain model logic and works with the Sitefinity CMS managers. The services may also have business logic depending on the level of the separation of concerns you want to achieve.
Implement the service layer
- Create a new interface
IHelloSitefinityService
that has one method that returns a string with the signature string SayHello():
- Create the
HelloSitefinityService
class which holds the logic of the methods:
As a result, the method displays the following text: Hello, Sitefinity!
Bind the interface to the service
The following code example demonstrates how to bind the interface to its implementation using Ninject-specific syntax:
As a result, after your build the project, the bindings are automatically registered in the Ninject kernel.