Exemplo n.º 1
0
 public void ActivateCustomer(int id)
 {
     _customerRepository.ActivateCustomer(id);
     return;
 }
Exemplo n.º 2
0
        public ActionResult ActivateCustomer(int customerId)
        {
            var success = _customerRepository.ActivateCustomer(customerId);

            return(Json(new { Success = success }));
        }