Files
PIBD-23_Coursework_Bank/TheBank/BankContracts/Infrastructure/IConfigurationDatabase.cs
DjonniStorm e909fa709f feat: создание проекта бд
добавление моделек для бд (кроме многие ко многим), реализация одного контракта хранилища
2025-04-25 01:12:51 +04:00

11 lines
316 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace BankContracts.Infrastructure;
/// <summary>
/// интерфейс для подключения к бд
/// хз зачем он нужен тут в контрактах а не в самой бд
/// </summary>
public interface IConfigurationDatabase
{
public string ConnectionString { get; }
}