13 lines
294 B
C#
13 lines
294 B
C#
using Npgsql;
|
|
|
|
namespace BookingPostgresImplementation
|
|
{
|
|
public class SqlConnection
|
|
{
|
|
public static NpgsqlConnection GetConnection()
|
|
{
|
|
return new NpgsqlConnection("Host=localhost;Port=6456;Username=postgres;Database=SUBD;Password=dan");
|
|
}
|
|
}
|
|
}
|