Skip to content

Instantly share code, notes, and snippets.

@vtml
Created March 19, 2019 11:56
Show Gist options
  • Save vtml/3817c2b4dc70f1513c18e0c2b5dfc268 to your computer and use it in GitHub Desktop.
Save vtml/3817c2b4dc70f1513c18e0c2b5dfc268 to your computer and use it in GitHub Desktop.
Sitecore Super Power Friendly Dependency Injection
public interface ISomeService
{
void Run(IGlassBase glassBase);
}
public class SomeService : ISomeService
{
public Run(IGlassBase glassBase)
{
// do something
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment