-
Notifications
You must be signed in to change notification settings - Fork 0
/
clsSchülerHalbjahrKurz.cls
67 lines (54 loc) · 1.7 KB
/
clsSchülerHalbjahrKurz.cls
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
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
END
Attribute VB_Name = "clsSchülerHalbjahrKurz"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
Option Compare Database
Option Explicit
'Klassenmodul für das Objekt Schüler und seine Haljahresleistungen Kurzfassung
Private lngUid As Long
Private lngSchuelerUid As Long
Private lngFachUid As Long
Private lngKlassengruppeUid As Long
Private lngJahrgangsstufeUid As Long
Private lngGeloescht As Long
Public Property Get uid() As Long
uid = lngUid
End Property
Public Property Let uid(ByVal vNewValue As Long)
lngUid = vNewValue
End Property
Public Property Get schueler_uid() As Long
schueler_uid = lngSchuelerUid
End Property
Public Property Let schueler_uid(ByVal vNewValue As Long)
lngSchuelerUid = vNewValue
End Property
Public Property Get fach_uid() As Long
fach_uid = lngFachUid
End Property
Public Property Let fach_uid(ByVal vNewValue As Long)
lngFachUid = vNewValue
End Property
Public Property Get klassengruppe_uid() As Long
klassengruppe_uid = lngKlassengruppeUid
End Property
Public Property Let klassengruppe_uid(ByVal vNewValue As Long)
lngKlassengruppeUid = vNewValue
End Property
Public Property Let jahrgangsstufe_uid(ByVal vNewValue As Long)
lngJahrgangsstufeUid = vNewValue
End Property
Public Property Get jahrgangsstufe_uid() As Long
jahrgangsstufe_uid = lngJahrgangsstufeUid
End Property
Public Property Get geloescht() As Long
geloescht = lngGeloescht
End Property
Public Property Let geloescht(ByVal vNewValue As Long)
lngGeloescht = vNewValue
End Property