using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using CentronSoftware.Centron.APIs.CopDataAccess; using Xunit; namespace Centron.APIs.CopDatabase.Tests { public class Tests { [Fact] public async Task Run() { var api = new CopApi("http://83.169.12.81:8085/cgi-bin/jsframework.exe/start.app", "c-entron", "H22QEbvGXPqJoYW48xk4"); var products = await api.SearchProductsAsync("computer"); foreach (var product in products) { var temp = await api.GetRelatedProductsAsync(product.Id); if (temp != null) { } } } } }