changed name of IBasketService to IBasketViewModelService in order to match file name (#143)

This commit is contained in:
Jakub Ciechowski
2018-10-15 17:35:38 +02:00
committed by Steve Smith
parent 1b5b179c7f
commit 156d5c6b25

View 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);
}
}