Example of use: The component com_customers
Object : creation of a component for entering / viewing the personal data of customers and their employees.
This is just a simple component to explain how to use (J)enesis in its basic actions. You can use this example to learn how to use the program and how to be independent in the development of your components.
Install a development version of your Joomla website! After installation open with your prefered manager the database in question.

Create the table jos_customers_customer as defined below:

- id: int, autoincrement, primary key (in each table used by Jenesis will need to specify this field)
- customer: varchar(50)
- city: varchar(50)
- state: varchar(50)
- dateactive: date
- numemployees: int, default (0)
Create the table jos_customers_employe as defined below:

- id: int, autoincrement, primary key
- name: varchar(50)
- surname: varchar(50)
- idcustomer: int
- image: varchar(254)









