public async Task <IActionResult> addAddresses(long enterpriseId, [FromBody] EnterpriseAddresListDTO enterpriseAddressList)
        {
            var item = await _enterpriseService.AddAddressesAsync(enterpriseId, enterpriseAddressList.enterpriseAddresses);

            return(CreatedAtAction(nameof(Get), new { id = item.Id }, item));
        }