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; }