summaryrefslogtreecommitdiffstats
path: root/Bachelor/Softwaretechnik/code/girokonto.cpp
blob: cfbe90d6002092508b986d4088f993e061d71c51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
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