/// <summary> /// Returns the document from the database to be updated. /// </summary> public Task <TemplatesDocument> LoadTemplatesDocumentAsync() => _sessionHelper.LoadForUpdateAsync <TemplatesDocument>();
/// <summary> /// Returns the document from the database to be updated. /// </summary> public Task <AdminMenuList> LoadAdminMenuListAsync() => _sessionHelper.LoadForUpdateAsync <AdminMenuList>();
/// <summary> /// Returns the document from the database to be updated. /// </summary> public Task <QueriesDocument> LoadDocumentAsync() => _sessionHelper.LoadForUpdateAsync <QueriesDocument>();
/// <summary> /// Returns the document from the database to be updated. /// </summary> private Task <SitemapDocument> LoadDocumentAsync() => _sessionHelper.LoadForUpdateAsync <SitemapDocument>();
/// <summary> /// Returns the document from the database to be updated. /// </summary> public Task <LayersDocument> LoadLayersAsync() => _sessionHelper.LoadForUpdateAsync <LayersDocument>();
/// <summary> /// Returns the document from the database to be updated. /// </summary> public Task <RolesDocument> LoadRolesAsync() => _sessionHelper.LoadForUpdateAsync <RolesDocument>();
/// <summary> /// Loads a single document (or create a new one) for updating and that should not be cached. /// </summary> public Task <ContentDefinitionRecord> LoadContentDefinitionAsync() => _sessionHelper.LoadForUpdateAsync <ContentDefinitionRecord>();
/// <summary> /// Returns the document from the database to be updated. /// </summary> public Task <ShortcodeTemplatesDocument> LoadShortcodeTemplatesDocumentAsync() => _sessionHelper.LoadForUpdateAsync <ShortcodeTemplatesDocument>();
/// <summary> /// Returns the document from the database to be updated. /// </summary> public Task <BackgroundTaskDocument> LoadDocumentAsync() => _sessionHelper.LoadForUpdateAsync <BackgroundTaskDocument>();