public IHttpActionResult GetTradingPartnerContact(int tpid, int id)
        {
            try
            {
                var contact = _tpService.GetContact(tpid, id);

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

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