/// <summary>
 /// Get PageChart object by content guid
 /// </summary>
 /// <param name="contentGuid"></param>
 /// <returns></returns>
 public PageCharts GetByContentGuid(Guid contentGuid)
 {
     return(_store.Load <PageCharts>(EPiServer.Data.Identity.NewIdentity(contentGuid)));
 }
Пример #2
0
 public TDDS Get(Identity identity)
 {
     return(_store.Load <TDDS>(identity));
 }
Пример #3
0
 public Comment Get(Guid commentId)
 {
     return(_commentStore.Load <Comment>(commentId));
 }