Skip to content

Instantly share code, notes, and snippets.

@komainu85
Created March 22, 2015 16:41
Show Gist options
  • Save komainu85/b84b8d34da344d9ef965 to your computer and use it in GitHub Desktop.
Save komainu85/b84b8d34da344d9ef965 to your computer and use it in GitHub Desktop.
Sitecore Entity Service Paged
public interface ICustomRepository<T> : Sitecore.Services.Core.IRepository<T> where T : IEntityIdentity
{
List<Entity> GetAll(int pageSize, int page);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment