/**
  * POST request that inserts a client
  */
 public Response Post(client cli)
 {
     return(repository.insertClient(cli));
 }