namespace Pcm.Db.Entities; public class Akwizytor { public Akwizytor() { Kontrahents = new HashSet(); } public decimal AkwId { get; set; } public string Nazwisko { get; set; } public string Opis { get; set; } public decimal Prowizja { get; set; } public virtual ICollection Kontrahents { get; set; } }