PIBD14-Boyko-M.S.-GSM-Autot.../ProjectGSM/Repositories/Implementations/PSQLConnectionString.cs

9 lines
310 B
C#
Raw Normal View History

2024-11-19 00:15:28 +04:00
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;
}