Add vorbestllungsdata into Table Bestellungsposition

This commit is contained in:
MET18937
2023-06-25 16:05:54 +02:00
parent c9f10887ee
commit 32bedc209c
7 changed files with 584 additions and 70 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; }
}