Currently I want to start a project that will scale in the future to an extent that I do not know, so I would like to know if this is the correct way to apply interfaces in the classes
Form (By method):
Generate an interface for each standard method that is carried out as for example (Listings, repetitive CRUDS, Search, etc.).
VerListado - interfaceListado
CRUD - interfaceCRUD
Busqueda - interfaceBusqueda
The way to implement the interfaces by means of this form would be as follows:
public class Prueba implements interfaceBusqueda, interfaceCRUD {
}