diff options
| author | Sven Eisenhauer <sven@sven-eisenhauer.net> | 2023-11-10 15:11:48 +0100 |
|---|---|---|
| committer | Sven Eisenhauer <sven@sven-eisenhauer.net> | 2023-11-10 15:11:48 +0100 |
| commit | 33613a85afc4b1481367fbe92a17ee59c240250b (patch) | |
| tree | 670b842326116b376b505ec2263878912fca97e2 /Bachelor/Softwaretechnik/code/girokonto.cpp | |
| download | Studium-33613a85afc4b1481367fbe92a17ee59c240250b.tar.gz Studium-33613a85afc4b1481367fbe92a17ee59c240250b.tar.bz2 | |
Diffstat (limited to 'Bachelor/Softwaretechnik/code/girokonto.cpp')
| -rw-r--r-- | Bachelor/Softwaretechnik/code/girokonto.cpp | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/Bachelor/Softwaretechnik/code/girokonto.cpp b/Bachelor/Softwaretechnik/code/girokonto.cpp new file mode 100644 index 0000000..cfbe90d --- /dev/null +++ b/Bachelor/Softwaretechnik/code/girokonto.cpp @@ -0,0 +1,78 @@ +/**********************************************************************************/
+/* Definitionsmodul */
+/**********************************************************************************/
+/*
+ * generiert mit Innovator Version 8.1.04
+ *
+ * erstellt am: 05.05.2005 14:01:16
+ * Repository : swtd29
+ * Modell : swt
+ * Benutzer : swtd29
+ * File : /users/swtd29/code/girokonto.cpp
+ *
+ */
+
+
+// ino.module.girokonto.419.includes
+#include "girokonto.hpp"
+// ino.end
+
+
+// ino.method.ueberweisen.462.definition
+void systemModel::AnalyseModell::Girokonto::ueberweisen(float betrag, Girokonto ZielGkto)
+// ino.end
+// ino.method.ueberweisen.462.body
+{
+}
+// ino.end
+// ino.method.dauerauftragAnlegen.465.definition
+Dauerauftrag systemModel::AnalyseModell::Girokonto::dauerauftragAnlegen()
+// ino.end
+// ino.method.dauerauftragAnlegen.465.body
+{
+}
+// ino.end
+// ino.method.dauerauftragLoeschen.467.definition
+void systemModel::AnalyseModell::Girokonto::dauerauftragLoeschen(Dauerauftrag dauerAuftrag)
+// ino.end
+// ino.method.dauerauftragLoeschen.467.body
+{
+}
+// ino.end
+
+
+
+// ino.method.Girokonto.412.definition
+systemModel::AnalyseModell::Girokonto::Girokonto(void)
+// ino.end
+// ino.method.Girokonto.412.body
+{
+ ueberziehungsKredit=1000;
+}
+// ino.end
+
+// ino.method.~Girokonto.409.definition
+systemModel::AnalyseModell::Girokonto::~Girokonto(void)
+// ino.end
+// ino.method.~Girokonto.409.body
+{
+}
+// ino.end
+
+// ino.method.pruefeUeberziehungsKredit.385.definition
+bool systemModel::AnalyseModell::Girokonto::pruefeUeberziehungsKredit(float betrag)
+// ino.end
+// ino.method.pruefeUeberziehungsKredit.385.body
+{
+ if (((getKontostand()-betrag)>-ueberziehungsKredit)|| (getKontostand()-betrag)>0)
+ {
+ return true;
+ }
+ else
+ {
+ return false;
+ }
+}
+// ino.end
+
+
|
