示例#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);
        }