* Update Startup.cs * Removed commented code * Update UrlsConfig.cs * Small Refactoring * Removed Commented Code * Small Refactoring
46 lines
1.3 KiB
C#
46 lines
1.3 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace Microsoft.eShopOnContainers.Web.Shopping.HttpAggregator.Config
|
|
{
|
|
|
|
public class UrlsConfig
|
|
{
|
|
|
|
public class CatalogOperations
|
|
{
|
|
// grpc call under REST must go trough port 80
|
|
public static string GetItemById(int id) => $"/api/v1/catalog/items/{id}";
|
|
|
|
public static string GetItemById(string ids) => $"/api/v1/catalog/items/ids/{string.Join(',', ids)}";
|
|
|
|
// REST call standard must go through port 5000
|
|
public static string GetItemsById(IEnumerable<int> ids) => $":5000/api/v1/catalog/items?ids={string.Join(',', ids)}";
|
|
}
|
|
|
|
public class BasketOperations
|
|
{
|
|
public static string GetItemById(string id) => $"/api/v1/basket/{id}";
|
|
|
|
public static string UpdateBasket() => "/api/v1/basket";
|
|
}
|
|
|
|
public class OrdersOperations
|
|
{
|
|
public static string GetOrderDraft() => "/api/v1/orders/draft";
|
|
}
|
|
|
|
public string Basket { get; set; }
|
|
|
|
public string Catalog { get; set; }
|
|
|
|
public string Orders { get; set; }
|
|
|
|
public string GrpcBasket { get; set; }
|
|
|
|
public string GrpcCatalog { get; set; }
|
|
|
|
public string GrpcOrdering { get; set; }
|
|
}
|
|
|
|
}
|