private ShoppingCart(BethanysPieShopContext context)
 {
     _context = context ?? throw new ArgumentNullException();
 }
 public CategoryRepository(BethanysPieShopContext context)
 {
     _context = context;
 }
 public PieRepository(BethanysPieShopContext context)
 {
     _context = context;
 }