7 lines
240 B
C#
7 lines
240 B
C#
|
namespace GasStation.Repositories.Implementations;
|
|||
|
|
|||
|
internal class ConnectionString : IConnectionString
|
|||
|
{
|
|||
|
string IConnectionString.ConnectionString => "Host=localhost;Port=5432;Username=postgres;Password=postgres;Database=normis";
|
|||
|
}
|