public async Task <IActionResult> GetCustomer(int id)
        {
            var customerFromRepo = await _repo.GetCustomer(id);

            var customerToReturn = _mapper.Map <CustomerForReturnDto>(customerFromRepo);

            return(Ok(customerToReturn));
        }