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-14 17:23:55 +04:00
|
|
|
|
string IConnectionString.ConnectionString => "Server=localHost;Port=...;Database=...;";
|
2024-11-14 16:13:13 +04:00
|
|
|
|
}
|