SchachtDataService hinzugefügt
This commit is contained in:
16
SewerStammGen.Shared/Contracts/IHaltungDataService.cs
Normal file
16
SewerStammGen.Shared/Contracts/IHaltungDataService.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using SewerStammGen.Shared.Domain;
|
||||
using Shared.Contracts;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace SewerStammGen.Shared.Contracts
|
||||
{
|
||||
public interface IHaltungDataService : IDataService<Kanal>
|
||||
{
|
||||
Task<IEnumerable<Kanal>> GetAllByProjekt(int projektID);
|
||||
Task<IEnumerable<Kanal>> GetAllByProjekt(Projekt projekt);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user