20240627
This commit is contained in:
46
Model/AavaloqDokumentWerte.cs
Normal file
46
Model/AavaloqDokumentWerte.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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.
@@ -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
43
Model/clsdocgendata.cs
Normal 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; }
|
||||
|
||||
}
|
||||
}
|
||||
@@ -1 +1 @@
|
||||
83a19bfecac12a105e2c168b7570b557e230c2b386b7189f0bae4c881e892e61
|
||||
549ed10f77a1c086a788bb795bf0b4c56e94a6e031521e15f1ee95239b97c005
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user