2025-03-12 21:09:05 +04:00

15 lines
420 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using PuferFishContracts.Infrastructure;
namespace PuferFishTests.Infrastructure
{
internal class ConfigurationDatabaseTest : IConfigurationDatabase
{
public string ConnectionString => @"Host=127.0.0.1;Port=5432;Database=PuferFishTests; Username=postgres;Password=postgres;";
}
}