16 lines
342 B
C#
16 lines
342 B
C#
using SewerStammGen.Shared.Domain;
|
|
using SewerStammGen.Shared.Enum;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Shared.Contracts
|
|
{
|
|
public interface IImport
|
|
{
|
|
List<Schacht> LoadSchaechte(string filename, EEntwaeserung entwaeserung);
|
|
}
|
|
}
|