public List <OwnerDataModel> GetAllUsers()
        {
            var shareOwnerControlClient = new ShareOwnerControlClient("http://localhost:8758");
            var usersList = shareOwnerControlClient.ApiShareOwnerGetAllUsersGetAsync().Result;

            return(usersList.ToList());
        }