public ReceiptSync()
        {
            config = new Config
            {
                Url      = ConfigurationManager.AppSettings["QuickFeeUrl"],
                Username = ConfigurationManager.AppSettings["QuickFeeUsername"],
                Password = ConfigurationManager.AppSettings["QuickFeePassword"]
            };

            redPlanetXML = new RedPlanetXML();

            receiptProcessor = new PEPaymentService.ReceiptProcessor();

            loggingService = new PELoggingService.LoggingService();

            resilianceFile = HostingEnvironment.MapPath("~/App_Data/ReceiptData.xml");

            System.Diagnostics.Trace.TraceInformation("Resiliance File", resilianceFile);
        }
 public QuickFeeProvider()
 {
     redPlanetXML = new RedPlanetXML();
 }