Exemplo n.º 1
0
 public CookiesCartService(IServiceAllData serviceAllData, IHttpContextAccessor http)
 {
     _dataBase     = serviceAllData;
     _httpAccessor = http;
     _CartName     = $"{http.HttpContext.User.Identity.Name}_cart";
 }
Exemplo n.º 2
0
 public CartController(IServiceCart CartService, IServiceAllData DataBase)
 {
     _CartService = CartService;
     _DataBase    = DataBase;
 }