24 lines
546 B
C#
24 lines
546 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SanShared
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public interface IMakeProtokol
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="destinationPath"></param>
|
|
/// <param name="projekt">Projekt</param>
|
|
/// <returns></returns>
|
|
Hashtable MakeProtokoll(string destinationPath, IProjekt projekt, DateTime offset);
|
|
}
|
|
}
|