Initial Commit (#6614)

This commit is contained in:
Alejandro Gervasio
2019-03-30 13:01:53 -03:00
committed by KevinGilmore
parent b67a006020
commit 5754bb3310
10 changed files with 128 additions and 0 deletions
@@ -0,0 +1,6 @@
module com.baeldung.dip.daoimplementations {
requires com.baeldung.dip.entities;
requires com.baeldung.dip.daos;
provides com.baeldung.dip.daos.CustomerDao with com.baeldung.dip.daoimplementations.SimpleCustomerDao;
exports com.baeldung.dip.daoimplementations;
}