16 lines
367 B
C#
16 lines
367 B
C#
using Shared.Domain;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SewerStammGen.Shared.Contracts
|
|
{
|
|
public interface ISchachtService
|
|
{
|
|
Task<Schacht> CreateSchacht(Projekt proj);
|
|
Task<Schacht> FindSchachtByNameAndProjektID(string name, int projektID);
|
|
}
|
|
}
|