diff --git a/doku/content.tex b/doku/content.tex index 3bc2ce3..6060888 100644 --- a/doku/content.tex +++ b/doku/content.tex @@ -678,6 +678,13 @@ Lesen der Daten aus der Datenbank aufzeigen. \label{fig:login} \end{figure} +\begin{figure}[H] + \centering + \frame{\includegraphics[scale=0.7]{Diagrammes/register.png}} + \caption{Screenshot der Registrierung} + \label{fig:register} +\end{figure} + \paragraph{Dashboard} Auf dem Dashboard, Abbildung: (\ref{fig:dashboard_class}), haben wir den Kern was Informationen herauslesen und wieder Eingeben belangt, diff --git a/doku/diagrammes/dashboard.png b/doku/diagrammes/dashboard.png index 65767a9..b7ee42b 100644 Binary files a/doku/diagrammes/dashboard.png and b/doku/diagrammes/dashboard.png differ diff --git a/doku/diagrammes/dashboard.puml b/doku/diagrammes/dashboard.puml index 58fb813..a836d00 100644 --- a/doku/diagrammes/dashboard.puml +++ b/doku/diagrammes/dashboard.puml @@ -1,18 +1,13 @@ @startuml class Dashboard { - List locations = new List(); - List rentlocation = new List(); - List rentedlocations = new List(); - BindingSource locationBinding = new BindingSource(); - BindingSource addlocationBinding = new BindingSource(); - BindingSource showrentBinding = new BindingSource(); + Dashboard() - void UpdateBinding() - void LocationSearchButton_Click() - void LocationInsertButton_Click() - void RentInsertButton_Click() - - void ADDLocationButton_Click() - void Dashboard_Load() - void ShowRentButton_Click() + - void ShowRentListBox_SelectedIndexChanged() + - void LoggedInUser_Click() } @enduml diff --git a/doku/diagrammes/dataaccess.puml b/doku/diagrammes/dataaccess.puml index e651e89..92dd738 100644 --- a/doku/diagrammes/dataaccess.puml +++ b/doku/diagrammes/dataaccess.puml @@ -2,8 +2,7 @@ class DataAccess { + SqlConnection connection + List GetLocations() - + List DisplayUser() - + void InsertLocations() + + void CurrentUser() + void InsertRent() + void InsertMember() # List GetRentedLocations() diff --git a/doku/diagrammes/getlocations.puml b/doku/diagrammes/getlocations.puml index bb45899..e765c57 100644 --- a/doku/diagrammes/getlocations.puml +++ b/doku/diagrammes/getlocations.puml @@ -4,6 +4,7 @@ class GetLocations { + string streetname + int location_capacity + string location_name + + int rent_price_id + string LocatinInfo() } @enduml diff --git a/doku/diagrammes/getrents.png b/doku/diagrammes/getrents.png index 648be80..75565f2 100644 Binary files a/doku/diagrammes/getrents.png and b/doku/diagrammes/getrents.png differ diff --git a/doku/diagrammes/getrents.puml b/doku/diagrammes/getrents.puml index 14aeaf2..d036c0b 100644 --- a/doku/diagrammes/getrents.puml +++ b/doku/diagrammes/getrents.puml @@ -4,7 +4,9 @@ class GetRents { + string rent_date + string payment_date + int member_id + + string email_address + int rent_price_id + + int rent_price + int location_id + string streetname + int location_capacity diff --git a/doku/screenshots/dashboard.png b/doku/screenshots/dashboard.png index 3a12755..85b11cb 100644 Binary files a/doku/screenshots/dashboard.png and b/doku/screenshots/dashboard.png differ diff --git a/doku/screenshots/register.png b/doku/screenshots/register.png new file mode 100644 index 0000000..d8aaff9 Binary files /dev/null and b/doku/screenshots/register.png differ