PIbd-22_Shabunov_O.A._SushiBar/SushiBarDatabaseImplement/Models/Dish.cs

24 lines
616 B
C#
Raw Normal View History

2024-05-15 20:43:24 +04:00
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace SushiBarDatabaseImplement.Models
{
public class Dish
{
[Key]
public int Id { get; set; }
[Required]
public string DishName { get; set; } = string.Empty;
[Required]
public string Category { get; set; } = string.Empty;
[ForeignKey("DishId")]
public virtual List<DishIngredient> DishIngredients { get; set; } = new();
[ForeignKey("DishId")]
2024-05-15 21:14:04 +04:00
public virtual List<ChequeItem> ChequeItems { get; set; } = new();
2024-05-15 20:43:24 +04:00
}
}