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

  1. Create a new interface IHelloSitefinityService that has one method that returns a string with the signature string SayHello():
  2. 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.

Want to learn more?

Sign up for our free beginner training. Boost your credentials through advanced courses and certification.
Register for Sitefinity training and certification.

Was this article helpful?