public List <Wallets> GetWalletsList(ref DataPage dp, Wallets searchWallets)
        {
            _admin = new CharmEventsAdminService.CharmEventsAdminServiceClient();
            List <Wallets> lists = new List <Wallets>();

            try
            {
                lists = _admin.GetWalletsList(ref dp, searchWallets);
                _admin.Close();
                return(lists);
            }
            catch (Exception ex)
            {
                _admin.CloseCatch(ex, "GetWalletsList failed");
                return(lists);
            }
        }