public void Post([FromBody] CustomerDTO customerDto)
        {
            CustomerService customerService = new CustomerService();
            MapperService   mapperService   = new MapperService();
            var             customer        = mapperService.CustomerDtoToCustomer(customerDto);

            customerService.SaveCustomerInCustomerDb(customer);
        }