Skip to content

Instantly share code, notes, and snippets.

@komainu85
Last active August 29, 2015 14:21
Show Gist options
  • Save komainu85/5502ba3b6e4e084e6023 to your computer and use it in GitHub Desktop.
Save komainu85/5502ba3b6e4e084e6023 to your computer and use it in GitHub Desktop.
Entity Service Services Controller
[ServicesController]
public class EntityController : EntityService<Entity>
{
public EntityController(Sitecore.Services.Core.IRepository<Entity> repository)
: base(repository)
{
}
public EntityController()
: this(new EntityRespository())
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment