13 lines
358 B
C#
Raw Normal View History

2024-11-28 22:46:58 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectGarage.Repositories.Implementations;
public class ConnectionString : IConnectionString
{
2024-12-03 23:06:20 +04:00
string IConnectionString.ConnectionString => "Host=localhost;Port=5432;Username=postgres;Password=postgres;Database=garage";
2024-11-28 22:46:58 +04:00
}