Cleaning things up and getting add item to cart working for anonymous or authenticated users.
This commit is contained in:
@@ -1,17 +1,13 @@
|
||||
using ApplicationCore.Entities;
|
||||
using Microsoft.eShopWeb.ApplicationCore.Entities;
|
||||
using System.Security.Principal;
|
||||
using Microsoft.eShopWeb.ApplicationCore.Entities;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ApplicationCore.Interfaces
|
||||
{
|
||||
public interface IBasketService
|
||||
{
|
||||
Task<Basket> GetBasket(ApplicationUser user);
|
||||
}
|
||||
|
||||
public interface IIdentityParser<T>
|
||||
{
|
||||
T Parse(IPrincipal principal);
|
||||
Task<Basket> GetBasket(string basketId);
|
||||
Task<Basket> CreateBasket();
|
||||
Task<Basket> CreateBasketForUser(string userId);
|
||||
Task UpdateBasket(Basket basket);
|
||||
}
|
||||
}
|
||||
|
||||
9
src/ApplicationCore/Interfaces/IIdentityParser.cs
Normal file
9
src/ApplicationCore/Interfaces/IIdentityParser.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using System.Security.Principal;
|
||||
|
||||
namespace ApplicationCore.Interfaces
|
||||
{
|
||||
public interface IIdentityParser<T>
|
||||
{
|
||||
T Parse(IPrincipal principal);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user