예제 #1
0
        public IActionResult CompleteSale(string company, string ebayAccountName, int orderId)
        {
            IEbayService ebayService = m_platformServiceFactory.GetEbayService(company);

            ebayService.CompleteSale(orderId);

            return(Ok());
        }
예제 #2
0
        public void CompleteSale(string company, string ebayAccountName, int orderId)
        {
            IEbayService ebayService = m_platformServiceFactory.GetEbayService(company);

            ebayService.CompleteSale(orderId);
        }