14 lines
312 B
C#
14 lines
312 B
C#
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
|
|
{
|
|
string IConnectionString.ConnectionString => "";
|
|
}
|