using Npgsql; namespace HotelDatabase { public class SqlConnection { public static NpgsqlConnection GetConnection() { return new NpgsqlConnection("Host=192.168.56.105;Port=5432;Username=postgres;Database=Hotel;Password=postgres"); } } }