using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace SushiBarDatabaseImplement.Models { public class Cook { [Key] public int Id { get; set; } [Required] public string Fio { get; set; } = string.Empty; [Required] public DateTime EmploymentDate { get; set; } [ForeignKey("CookId")] public List ChequeItems { get; set; } = new(); } }