13 lines
304 B
C#
13 lines
304 B
C#
using SmallSoftwareContracts.Infrastructure;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SmallSoftwareDatabase;
|
|
|
|
class DefaultConfigurationDatabase : IConfigurationDatabase
|
|
{
|
|
public string ConnectionString => "";
|
|
} |