Added basic outline

This commit is contained in:
Marvin Scham
2023-05-20 05:51:51 +02:00
parent c213fc3f71
commit 1143097aee
25 changed files with 171 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
package de.rwu.easydrop.data.connector;
public class DatabaseConnector {
}

View File

@@ -0,0 +1,6 @@
/**
* Connectors for databases.
*
* @todo implement
*/
package de.rwu.easydrop.data.connector;

View File

@@ -0,0 +1,5 @@
package de.rwu.easydrop.data.dao;
public class ProductDAO {
}

View File

@@ -0,0 +1,6 @@
/**
* Data access objects for business objects created from persistence.
*
* @todo implement
*/
package de.rwu.easydrop.data.dao;

View File

@@ -0,0 +1,5 @@
package de.rwu.easydrop.data.model;
public class Product {
}

View File

@@ -0,0 +1,6 @@
/**
* Business objects.
*
* @todo implement
*/
package de.rwu.easydrop.data.model;

View File

@@ -0,0 +1,6 @@
/**
* Structure for business objects and persisting their info.
*
* @todo implement
*/
package de.rwu.easydrop.data;