public IActionResult CompleteSale(string company, string ebayAccountName, int orderId) { IEbayService ebayService = m_platformServiceFactory.GetEbayService(company); ebayService.CompleteSale(orderId); return(Ok()); }
public void CompleteSale(string company, string ebayAccountName, int orderId) { IEbayService ebayService = m_platformServiceFactory.GetEbayService(company); ebayService.CompleteSale(orderId); }