### Database Connection String Example Source: https://ru.iiko.help/articles/iikocard/topic-45/a/h2_1 This is an example of a database connection string that can be overridden in the alternative configuration file. Ensure the server instance and database name match your setup. ```xml ``` -------------------------------- ### Install KKT StCashRegister Plugin Source: https://ru.iiko.help/articles/special-iiko/kkt-stcashregister/a/h2__63045927 Copy the plugin folder to the iikoRMSFront.NetPlugins directory. Verify installation by checking for error messages on startup or by examining the log file. ```bash C:\Program Files\iiko\iikoRMS\Front.Net\Plugins_ ``` ```bash %appdata%\iiko\CashServer\Logs\Resto.Front.Api.StCashRegister.log. ``` -------------------------------- ### Get Period Start and End Dates in C# Source: https://ru.iiko.help/articles/iikooffice-9-2/topic-6/a/h3_1526430597 Retrieve the start and end dates for a period parameter. The parameter must be of type 'Period'. ```csharp var settings = Model.ReportSettings; // Получить дату начала периода var periodBegin = settings.GetPeriodBegin("ReportInterval"); // Получить дату окончания периода var periodEnd = settings.GetPeriodEnd("ReportInterval"); ``` -------------------------------- ### Sendy Plugin Installation Steps Source: https://ru.iiko.help/articles/special-iiko/sendy/a/h2_473963267 Follow these steps to install the Sendy plugin. Copy plugin files to the specified directory, configure the settings file if necessary, and then launch iikoFront and iikoOffice to register and set up the payment type. Finally, activate the terminal within iikoFront using the provided identifier and activation code. ```plaintext 1. Все файлы из сборки скопируйте в папку C:Program FilesiikoiikoRMSFront.NetPluginsResto.Front.Api.SendyPlugin 2. При необходимости настройте конфигурационный файл Resto.Front.Api.SendyPlugin.dll.config. 3. Запустите iikoFront. Он зарегистрирует плагин. 4. Запустите iikoOffice и настройте тип оплаты: 5. В меню iikoFront выберите пункт **Дополнения → Sendy → Активация терминала.** 6. Введите идентификатор терминала и код активации. Появится сообщение об успешной активации. Теперь можете пользоваться интеграцией. ```