10 lines
300 B
C#
10 lines
300 B
C#
using BankContracts.Infrastructure;
|
|
|
|
namespace BankTests.Infrastructure;
|
|
|
|
internal class ConfigurationDatabase : IConfigurationDatabase
|
|
{
|
|
public string ConnectionString =>
|
|
"Host=127.0.0.1;Port=5432;Database=TitanicTest;Username=postgres;Password=admin123;Include Error Detail=true";
|
|
}
|