/// <summary>
        /// Запрос информации о состоянии счета и аккаунта
        /// </summary>
        /// <returns> Возвращает информацию о состоянии счета и аккаунта приведенную к классу AccountInfo</returns>
        public AccountInfo GetAccountInfo()
        {
            var xml      = _xmlCreator.CreateAccountInfoXml();
            var response = _httpService.Request(AccountInfoApiUrl, xml);

            return(ResponseParser.ParseAccountInfoResponse(response));
        }