public IActionResult GetCustomerPaging(int pageIndex, int pageSize)
        {
            var customers = _customerServices.GetCustomerPaging(pageIndex, pageSize);

            if (customers.Count() > 0)
            {
                return(Ok(customers));
            }
            else
            {
                return(NoContent());
            }
        }