Vereinsmeisterschaften  22aa7800eae54b428d40e835886cefe1fdefdfdf
This is a software that can be used to manage the internal competition of the swimming club Illertissen called "Vereinsmeisterschaften".
Loading...
Searching...
No Matches
IDocumentService.cs
1using System;
2using System.Collections.Generic;
3using System.Text;
5
7{
11 public interface IDocumentService
12 {
17 string PlaceholderMarker { get; }
18
26 Task<(int, string)> CreateDocument(DocumentCreationTypes documentType, bool createPdf = true);
27 }
28}
Interface for a service used to create documents like certificates or start lists.
Task<(int, string)> CreateDocument(DocumentCreationTypes documentType, bool createPdf=true)
Create the document indicated by the document type.
string PlaceholderMarker
String marker for placeholders in the template files.
DocumentCreationTypes
Different types of documents that can be created.