2024-11-14 16:13:13 +04:00
|
|
|
|
using ProjectTourAgency.Repositories;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ProjectTourAgency.Implementations;
|
|
|
|
|
|
|
|
|
|
public class ConnectionString : IConnectionString
|
|
|
|
|
{
|
2024-11-24 18:14:45 +04:00
|
|
|
|
string IConnectionString.ConnectionString => "Server=localHost;Port=5432;Database=otp;Username=postgres;Password=1488;Include Error Detail = True ";
|
2024-11-14 16:13:13 +04:00
|
|
|
|
}
|