16 lines
341 B
C#
16 lines
341 B
C#
using Shared.Contracts;
|
|
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 IHaltungDataService : IDataService<Kanal>
|
|
{
|
|
Task<IEnumerable<Kanal>> GetAll(int projektID);
|
|
}
|
|
}
|