Exemple #1
0
        public IActionResult GetSalesAgentCustomerCount(int id)
        {
            var _repository   = new ChinookRepository();
            var customerCount = _repository.GetSalesAgentCustomerCount(id);

            return(Ok(customerCount));
        }