/**
  * DELETE request that disable a client
  */
 public Response Delete(int id)
 {
     return(repository.deleteClient(id));
 }