using System; using System.Collections.Generic; namespace TestApplication.Context; public partial class Manufacturer1 { public int Id { get; set; } public string Name { get; set; } = null!; public DateOnly? StartDate { get; set; } public virtual ICollection Product1s { get; set; } = new List(); }