Erweitert

This commit is contained in:
Husky
2021-02-26 08:27:11 +01:00
parent b038a59ca7
commit 6761b17f4d
15 changed files with 114 additions and 94 deletions

View File

@@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using Models;
namespace DataStoring.Contract
{
public interface IAuftraggeberRepository
{
List<Auftraggeber> Query {get;}
}
}