public ApplicationObject AddWebPayment(string code)
 {
     try
     {
         return(_transactionManager.AddApplicationWebPayment(code));
     }
     catch (Exception ex)
     {
         ErrorLogger.LoggError(ex.StackTrace, ex.Source, ex.Message);
         return(new ApplicationObject());
     }
 }