Esempio n. 1
0
        // DELETE api/Customer/5
        public void Delete(int id)
        {
            var customer = new Customer()
            {
                Id = id
            };

            _UsuarioServicio.Delete(customer);
        }
Esempio n. 2
0
 public int Delete(Customer customer)
 {
     return(_usuarioServicio.Delete(customer));
 }