manage basket checkout after login (#371)

This commit is contained in:
Cédric Michel
2020-05-06 21:53:52 +02:00
committed by GitHub
parent fdb4869c0b
commit 516d87aaa1
5 changed files with 25 additions and 7 deletions

View File

@@ -1,9 +1,10 @@
namespace Microsoft.eShopWeb.Web
 namespace Microsoft.eShopWeb.Web
{
public static class Constants
{
public const string BASKET_COOKIENAME = "eShop";
public const int ITEMS_PER_PAGE = 10;
public const string DEFAULT_USERNAME = "Guest";
public const string BASKET_ID = "BasketId";
}
}