changed name of IBasketService to IBasketViewModelService in order to match file name (#143)
This commit is contained in:
committed by
Steve Smith
parent
1b5b179c7f
commit
156d5c6b25
10
src/Web/Interfaces/IBasketViewModelService.cs
Normal file
10
src/Web/Interfaces/IBasketViewModelService.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using Microsoft.eShopWeb.Web.ViewModels;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Microsoft.eShopWeb.Web.Interfaces
|
||||
{
|
||||
public interface IBasketViewModelService
|
||||
{
|
||||
Task<BasketViewModel> GetOrCreateBasketForUser(string userName);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user