Initial commit

This commit is contained in:
2023-08-01 14:04:38 +02:00
commit d64e49ce19
8 changed files with 225 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CardMarketServer
{
internal interface IUsedRepository
{
List<string> Query { get; }
void Insert(string bestellungid);
}
}