Files
PIbd-24_Ivleev_D.A._TwoFrom…/TwoFromTheCaseProject/TwoFromTheCaseTests/Infrastructure/ConfigurationDatabaseTest.cs

8 lines
288 B
C#

using TwoFromTheCaseContracts.Infrastructure;
namespace TwoFromTheCaseTests.Infrastructure;
class ConfigurationDatabaseTest : IConfigurationDatabase
{
public string ConnectionString => "Host=127.0.0.1;Port=5432;Database=TwoFromTheCaseTest;Username=postgres;Password=postgres;";
}