public void CreateStock(string stockId, int sharePrice)
        {
            var shareOwnerControlClient = new ShareOwnerControlClient("http://localhost:8758");

            shareOwnerControlClient.ApiShareOwnerCreateStockByStockIdPostAsync(stockId, sharePrice);
        }