public RepositoryPizzaOrder()
 {
     db = new DBPizzaBoxContext();
 }
 public RepositoryPizzaOrder(DBPizzaBoxContext db)
 {
     this.db = db ?? throw new ArgumentNullException(nameof(db));
 }
 public RepositoryStore()
 {
     db = new DBPizzaBoxContext();
 }