public Int64 AddWallets(Wallets wallets)
 {
     _admin = new CharmEventsAdminService.CharmEventsAdminServiceClient();
     try
     {
         long rs = _admin.AddWallets(wallets);
         _admin.Close();
         return(rs);
     }
     catch (Exception ex)
     {
         _admin.CloseCatch(ex, "AddWallets failed");
         return(0);
     }
 }