Warenkorb bestellungsabschluss + Login (Kunde/Chefin) (#48)

* Add Bestellabschluss link

* Add vorbestllungsdata into Table Bestellungsposition

* Add vorbestllungsdata into Table BestellungspositionHasMenuitem

* Add complete vorbestellungsfunktion

* Add kontaktverwaltung Bestellübersicht

* Update Bestelluebersicht BestelluebersichtD-Chefin

* Update Bestelluebersicht

* Fix kunde.Idkunde access

* Add page acees only on valid kunde login

* Add current kunde usage

* Add admin login

* Fix frontend speisekarte1

* Fix treuepunkte vergabe

* Fix chefin bestellungseinsicht
This commit is contained in:
MET18937
2023-06-26 18:55:12 +02:00
committed by GitHub
parent 5b21244ee5
commit 28327710f8
28 changed files with 2160 additions and 611 deletions

View File

@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
namespace WebApi.Models;
public partial class BestellungspositionHasMenuitem
{
public int? Bestellungsposition_IDBestellung { get; set; }
public int? MenuItem_IDMenuItem { get; set; }
}