Klasst erstellen
This commit is contained in:
20
SkyTeam/Fluge.cs
Normal file
20
SkyTeam/Fluge.cs
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace SkyTeam
|
||||||
|
{
|
||||||
|
internal class Fluge
|
||||||
|
{
|
||||||
|
private int id { get; set; }
|
||||||
|
private string abflugort { get; set; }
|
||||||
|
private string zielort { get; set; }
|
||||||
|
private DateTime abflugdatum { get; set; }
|
||||||
|
private DateTime ankunftsdatum { get; set; }
|
||||||
|
private string flugnummer { get; set; }
|
||||||
|
private decimal preis { get; set; }
|
||||||
|
private DateTime created { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
19
SkyTeam/Mitarbeiter.cs
Normal file
19
SkyTeam/Mitarbeiter.cs
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace SkyTeam
|
||||||
|
{
|
||||||
|
internal class Mitarbeiter
|
||||||
|
{
|
||||||
|
private int id { get; set; }
|
||||||
|
private string vorname { get; set; }
|
||||||
|
private string nachname { get; set; }
|
||||||
|
private string position { get; set; }
|
||||||
|
private int alter { get; set; }
|
||||||
|
private float arbeitsstundenProWoche { get; set; }
|
||||||
|
private Boolean istVerfuegbar { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
21
SkyTeam/User.cs
Normal file
21
SkyTeam/User.cs
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace SkyTeam
|
||||||
|
{
|
||||||
|
internal class User
|
||||||
|
{
|
||||||
|
private int id { get; set; }
|
||||||
|
private string vorname { get; set; }
|
||||||
|
private string nachname { get; set; }
|
||||||
|
private string email { get; set; }
|
||||||
|
private string passwort { get; set; }
|
||||||
|
private string stadt { get; set; }
|
||||||
|
private DateTime geburtsdatum { get; set; }
|
||||||
|
private string anrede { get; set; }
|
||||||
|
private DateTime created { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
23
SkyTeam/flugzeug.cs
Normal file
23
SkyTeam/flugzeug.cs
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace SkyTeam
|
||||||
|
{
|
||||||
|
internal class flugzeug
|
||||||
|
{
|
||||||
|
private int id { get; set; }
|
||||||
|
private string modell { get; set; }
|
||||||
|
private DateTime herstellungsdatum { get; set; }
|
||||||
|
private int plaetze { get; set; }
|
||||||
|
private float lagerflache { get; set; }
|
||||||
|
private float weicht { get; set; }
|
||||||
|
private float kerosineverbrauch { get; set; }
|
||||||
|
private float stundengeschwindigkeit { get; set; }
|
||||||
|
private float stundenstand { get; set; }
|
||||||
|
private Boolean istVerfuegbar { get; set; }
|
||||||
|
private Boolean istDefekt { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
22
SkyTeam/pilot.cs
Normal file
22
SkyTeam/pilot.cs
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace SkyTeam
|
||||||
|
{
|
||||||
|
internal class pilot
|
||||||
|
{
|
||||||
|
private int id { get; set; }
|
||||||
|
private string vorname { get; set; }
|
||||||
|
private string nachname { get; set; }
|
||||||
|
private float flugerfahrung { get; set; }
|
||||||
|
private float groesse { get; set; }
|
||||||
|
private float bewertung { get; set; }
|
||||||
|
private List <string> sprachen { get; set; }
|
||||||
|
private DateTime alter { get; set; }
|
||||||
|
private string gender { get; set; }
|
||||||
|
private Boolean istVerfuegbar { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user