public void UpdatePuntos(UpdatePuntaje pp)
        {
            var clientes = new[] { new
                                   {
                                       dni    = pp.dni,
                                       puntos = pp.puntos
                                   } };

            _restClient
            .Resource(_config.Clientes.Update)
            .SendPut(new
            {
                bulk = clientes
            });
        }
Esempio n. 2
0
 public void UpdatePuntos(UpdatePuntaje pp)
 {
     throw new NotImplementedException();
 }