Skip to content

Instantly share code, notes, and snippets.

@marcduiker
Last active August 29, 2015 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcduiker/b2259bdb9c888b33cb9e to your computer and use it in GitHub Desktop.
Save marcduiker/b2259bdb9c888b33cb9e to your computer and use it in GitHub Desktop.
using Sitecore.Data;
using Sitecore.Data.Items;
using SitecorePlayground.Common.Interfaces.Adapters;
namespace SitecorePlayground.Common.Interfaces.Providers
{
public interface IItemProvider
{
Item GetItem(ID itemId);
IItemAdapter GetItemAdapter(ID itemId);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment