Files
BeWoPlaner/Data/Mappings/Icf.hbm.xml
rene 928aa4a807 Maßnahme und Ziele Icf Import
Maßnahme und Ziele per Popup bearbeiten
Maßnahme und Ziele Notiz optional einblenden
Das selbe auch bei Hilfeplan -> Ziele (ohne Icf import)

ReportTemplate hinzugefügt (Tabelle, Hibernate, Enity, Mapper, DC)

Listbox Select hinzugefügt, dient dem generischen Auswählen eines object aus einer list<object> per control
2019-08-26 16:11:00 +02:00

13 lines
583 B
XML

<?xml version="1.0" encoding="utf-8" ?>
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2">
<class name="BeWo.Data.Entities.Icf,BeWo.Data" table="Icf">
<id name="Oid" column="Oid" type="Int64" unsaved-value="null">
<generator class="identity" />
</id>
<property column="Code" type="String" name="Code" length="64" />
<property column="Bezeichnung" type="String" name="Bezeichnung" />
<property column="Beschreibung" type="String" name="Beschreibung" />
<property column="ParentID" type="Int64" name="ParentID" />
</class>
</hibernate-mapping>