Uses of Class
br.com.pethub.model.Employees
Packages that use Employees
Package
Description
This package contains the Data Access Object (DAO) classes for the PetHub application.
-
Uses of Employees in br.com.pethub.dao
Methods in br.com.pethub.dao that return EmployeesModifier and TypeMethodDescriptionEmployeesDAO.searchEmployeeByCPF
(String cpf) This method searches for an employee in the database by CPF.Methods in br.com.pethub.dao that return types with arguments of type EmployeesModifier and TypeMethodDescriptionEmployeesDAO.listEmployees()
This method is used to retrieve a list of all employees from the database.EmployeesDAO.searchEmployees
(String name) This method is used to search for employees by name.Methods in br.com.pethub.dao with parameters of type EmployeesModifier and TypeMethodDescriptionvoid
EmployeesDAO.addEmployees
(Employees obj) This method is used to add a new employee to the database.void
EmployeesDAO.deleteEmployees
(Employees obj) This method is used to delete an employee from the database.void
EmployeesDAO.editEmployees
(Employees obj) This method is used to edit the details of an existing employee in the database.