public IHttpActionResult UpdateProperty(int tpid, [FromBody] TradingPartnerPropertyDto dto)
        {
            try
            {
                var entity = _tpService.GetProperty(tpid, dto.Id);

                if (entity == null)
                {
                    return(NotFound());
                }

                return(Ok(_tpService.UpdateProperty(tpid, dto)));
            }
            catch (Exception ex)
            {
                //LOG
                //return StatusCode(HttpStatusCode.InternalServerError);
                return(InternalServerError(new Exception("An unexpected error occured! Please try again later!")));
            }
        }