Example #1
0
 /// <summary>
 /// Gets the associated catalog entries dto.
 /// </summary>
 /// <param name="parentEntryCode">The parent entry code.</param>
 /// <param name="associationName">Name of the association.</param>
 /// <param name="responseGroup">The response group.</param>
 /// <returns></returns>
 public CatalogEntryDto GetAssociatedCatalogEntriesDto(string parentEntryCode, string associationName, CatalogEntryResponseGroup responseGroup)
 {
     return(CatalogEntryManager.GetAssociatedCatalogEntriesDto(parentEntryCode, associationName, responseGroup));
 }
Example #2
0
 /// <summary>
 /// Gets the associated catalog entries dto.
 /// </summary>
 /// <param name="parentEntryId">The parent entry id.</param>
 /// <param name="associationName">Name of the association.</param>
 /// <returns></returns>
 public CatalogEntryDto GetAssociatedCatalogEntriesDto(int parentEntryId, string associationName)
 {
     return(CatalogEntryManager.GetAssociatedCatalogEntriesDto(parentEntryId, associationName, new CatalogEntryResponseGroup()));
 }