Uses of Class
br.com.pethub.model.Customers
Packages that use Customers
Package
Description
This package contains the Data Access Object (DAO) classes for the PetHub application.
This package contains the model classes for the PetHub application.
This package contains the view classes for the PetHub application.
-
Uses of Customers in br.com.pethub.dao
Methods in br.com.pethub.dao that return CustomersModifier and TypeMethodDescriptionCustomersDAO.consultCustomers
(String name) This method is used to consult a customer by name.CustomersDAO.searchCustomerByCPF
(String cpf) This method searches for a customer in the database by CPF.Methods in br.com.pethub.dao that return types with arguments of type CustomersModifier and TypeMethodDescriptionCustomersDAO.listCustomers()
This method lists all customers in the database.CustomersDAO.searchCustomer
(String name) This method searches for a customer in the database by name.Methods in br.com.pethub.dao with parameters of type CustomersModifier and TypeMethodDescriptionvoid
CustomersDAO.addCustomer
(Customers obj) This method adds a customer to the database.void
CustomersDAO.deleteCustomer
(Customers obj) This method deletes a customer from the database.void
CustomersDAO.editCustomer
(Customers obj) This method edits a customer in the database.PetsDAO.getPetsByCustomer
(Customers customer) This method is used to get pets by customer. -
Uses of Customers in br.com.pethub.model
Subclasses of Customers in br.com.pethub.modelModifier and TypeClassDescriptionclass
This class represents an Employee in the application.class
This class represents a Supplier in the application.Methods in br.com.pethub.model that return CustomersModifier and TypeMethodDescriptionSales.getCustomer()
Pets.getCustumers()
Schedule.getCustumers()
Vaccine.getCustumers()
Methods in br.com.pethub.model with parameters of type CustomersModifier and TypeMethodDescriptionvoid
Sales.setCustomer
(Customers customer) void
Pets.setCustumers
(Customers custumers) void
Schedule.setCustumers
(Customers custumers) void
Vaccine.setCustumers
(Customers custumers) -
Uses of Customers in br.com.pethub.view
Fields in br.com.pethub.view with type parameters of type Customers