CardStoreComponent - конструктор
Создаёт экземпляр класса с указанием стратегий, требуемых для сохранения карточки,
и области видимости объекта
DbManager.
Пространство имён: Tessa.Cards.ComponentModelСборка: Tessa (в Tessa.dll) Версия: 4.0.4
public CardStoreComponent(
ICardStoreStrategy storeStrategy,
ICardTransactionStrategy transactionStrategy,
ICardContentStrategy contentStrategy,
ICardFileVersionStrategy versionStrategy,
[DependencyAttribute("Backup")] ICardFileVersionStrategy deletedVersionStrategy,
IDbScope dbScope,
IConfigurationInfoProvider configurationInfoProvider,
[OptionalDependencyAttribute("CardStoreComponent")] ActivitySource? activitySource = null
)
Public Sub New (
storeStrategy As ICardStoreStrategy,
transactionStrategy As ICardTransactionStrategy,
contentStrategy As ICardContentStrategy,
versionStrategy As ICardFileVersionStrategy,
<DependencyAttribute("Backup")> deletedVersionStrategy As ICardFileVersionStrategy,
dbScope As IDbScope,
configurationInfoProvider As IConfigurationInfoProvider,
<OptionalDependencyAttribute("CardStoreComponent")> Optional activitySource As ActivitySource = Nothing
)
public:
CardStoreComponent(
ICardStoreStrategy^ storeStrategy,
ICardTransactionStrategy^ transactionStrategy,
ICardContentStrategy^ contentStrategy,
ICardFileVersionStrategy^ versionStrategy,
[DependencyAttribute(L"Backup")] ICardFileVersionStrategy^ deletedVersionStrategy,
IDbScope^ dbScope,
IConfigurationInfoProvider^ configurationInfoProvider,
[OptionalDependencyAttribute(L"CardStoreComponent")] ActivitySource^ activitySource = nullptr
)
new :
storeStrategy : ICardStoreStrategy *
transactionStrategy : ICardTransactionStrategy *
contentStrategy : ICardContentStrategy *
versionStrategy : ICardFileVersionStrategy *
[<DependencyAttribute("Backup")>] deletedVersionStrategy : ICardFileVersionStrategy *
dbScope : IDbScope *
configurationInfoProvider : IConfigurationInfoProvider *
[<OptionalDependencyAttribute("CardStoreComponent")>] ?activitySource : ActivitySource
(* Defaults:
let _activitySource = defaultArg activitySource null
*)
-> CardStoreComponent
Параметры
- storeStrategy ICardStoreStrategy
Стратегия сохранения карточки.
- transactionStrategy ICardTransactionStrategy
Стратегия обеспечения блокировок reader/writer при выполнении операций с карточкой.
SQL-транзакция открывается только в том случае, если на этом соединении с БД отсутствует другая незакрытая транзакция.
- contentStrategy ICardContentStrategy
- С
Стратегия управления контентом файла.
- versionStrategy ICardFileVersionStrategy
Стратегия, загружающая информацию по версиям файла и устанавливающая состояние версии файла.
- deletedVersionStrategy ICardFileVersionStrategy
Стратегия, загружающая информацию по версиям файла и устанавливающая состояние версии файла.
- dbScope IDbScope
Объект для взаимодействия с базой данных.
Определяет область видимости объекта
DbManager.
- configurationInfoProvider IConfigurationInfoProvider
Объект, предоставляющий информацию по текущей конфигурации.
- activitySource ActivitySource (Optional)
- API для трассировки.