Unit test for Adresse is done, unit test for clients is WIP 80%
This commit is contained in:
@@ -1,10 +1,14 @@
|
||||
package fr.eni.demo.bll;
|
||||
|
||||
import fr.eni.demo.bo.Adresse;
|
||||
import fr.eni.demo.bo.Client;
|
||||
|
||||
import java.util.Optional;
|
||||
import java.util.List;
|
||||
|
||||
public interface ClientService {
|
||||
void add(Client client);
|
||||
Optional<Client> findById(Long clientId);
|
||||
Client findById(Long clientId);
|
||||
List<Client> findByName(String name);
|
||||
void fullUpdate(Long id, Client client, Adresse adresseDetails);
|
||||
void updateLocation(Long idClient, Adresse adresseDetails);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user