This commit is contained in:
Stefan Hutter
2024-06-27 14:21:00 +02:00
parent 4a01857d74
commit f2e504cf7d
171 changed files with 9294 additions and 477 deletions

View File

@@ -0,0 +1,46 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
[Serializable()]
public partial class AvaloqDokumentWert
{
private string strName;
private string strValue;
public AvaloqDokumentWert(string name, string value)
{
this.name = name;
this.value = value;
}
public string name
{
get
{
return strName;
}
set
{
strName = value;
}
}
public string value
{
get
{
return strValue;
}
set
{
strValue = value;
}
}
}
}

View File

@@ -41,8 +41,10 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="AavaloqDokumentWerte.cs" />
<Compile Include="Class1.cs" />
<Compile Include="clsDocData.cs" />
<Compile Include="clsdocgendata.cs" />
<Compile Include="clsdok.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>

Binary file not shown.

Binary file not shown.

View File

@@ -37,6 +37,7 @@ namespace Model
public string UseEDOKA_Values { get; set; }
public List<clsDocValue> DocValues {get;set;}
public List<clsDocMacro> DocMacros { get; set; }
}
@@ -47,4 +48,9 @@ namespace Model
public string FieldName { get; set; }
public string Value { get; set; }
}
public class clsDocMacro
{
public string Name { get; set; }
public string BookMark { get;set; }
}
}

43
Model/clsdocgendata.cs Normal file
View File

@@ -0,0 +1,43 @@
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public enum Erstellungsart
{
DokumentBearbeiten,
DokumentSpäterBearbeiten,
DokumentAlsPDF,
DokumentAlsPDFArchivieren
}
public class clsdocgendata
{
public string bezeichnung { get; set; }
public string dokumenttypnr { get; set; }
public string partnernr { get; set; }
public string inhaberadresse { get; set; }
public string zustelladresse { get; set; }
public string postzustellung { get; set; }
public string dokumentdatum { get; set; }
public string ersteller { get; set; }
public string zustaendigkube { get; set; }
public string zustaendigmitarbeiter { get; set; }
public bool frormularOhneUnterschrift { get; set; }
public string unterschriftLinks { get; set; }
public string unterschriftRehts { get; set; }
public bool digitaleunterschrift { get; set; }
public string team { get; set; }
public string verantwortlich { get; set; }
public string status { get; set; }
public Erstellungsart erstellungsart { get; set; }
public DataTable dokumentwerte { get; set; }
}
}

View File

@@ -1 +1 @@
83a19bfecac12a105e2c168b7570b557e230c2b386b7189f0bae4c881e892e61
549ed10f77a1c086a788bb795bf0b4c56e94a6e031521e15f1ee95239b97c005

Binary file not shown.

Binary file not shown.