public void GetCharacters()
        {
            var apiKeyInfo = new ApiKeyInfo()
            {
                KeyId = 2979031,
                VCode = "jb25Tppy5VgfEE3SR8ghVSNz33TfLNWmE2o3Jhcn8I2hJM34bm4buizVS80CAFwf"
            };

            var info = new GeneralRepo().GetCharacters(apiKeyInfo);

            Assert.IsNotNull(info.result);
        }
 public eveapi GetCharacters(ApiKeyInfo apiKeyInfo)
 {
     var url = "https://api.eveonline.com/account/Characters.xml.aspx";
     return Post(url, apiKeyInfo.ToDictionary()).Data;
 }