CurrentList.cs 548 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Tren
  7. {
  8. internal class CurrentList
  9. {
  10. public static List<Products> products;
  11. public static TreningDemoEntities db = new TreningDemoEntities();
  12. public static decimal? priceTotal = 0; // итоговая цена корзины
  13. public static int discountTotal = 0; // итоговая скидка
  14. public static List<Products> basketProducts = new List<Products>();
  15. }
  16. }