public IHttpActionResult Create(int tpid, [FromBody] TradingPartnerPropertyCreateDto property)
        {
            if (property == null)
            {
                return(BadRequest("Invalid Property Object!"));
            }

            return(Ok(_tpService.AddProperty(tpid, property)));
        }