9 lines
200 B
C#
9 lines
200 B
C#
using System;
|
|
using Models;
|
|
|
|
namespace ProtokollWriterContract {
|
|
public interface IProtokollWriter {
|
|
void WriteProtokoll(Inspektionsobjekt inspektionsobjekt,uint prüfungsnummer);
|
|
}
|
|
}
|