9 lines
310 B
C#
9 lines
310 B
C#
namespace ProjectGSM.Repositories.Implementations;
|
|
|
|
public class PSQLConnectionString : IConnectionString
|
|
{
|
|
private readonly string _connectionString =
|
|
"User Id=postgres; Password=postgres; Host=localhost; Port=5432; Database=egovdb;";
|
|
|
|
public string ConnectionString => _connectionString;
|
|
} |