20 lines
425 B
C#
20 lines
425 B
C#
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace Pcm.Db.Entities;
|
|
|
|
public class Akwizytor
|
|
{
|
|
public Akwizytor()
|
|
{
|
|
Kontrahents = new HashSet<Kontrahent>();
|
|
}
|
|
|
|
public decimal AkwId { get; set; }
|
|
public string Nazwisko { get; set; }
|
|
public string Opis { get; set; }
|
|
public decimal Prowizja { get; set; }
|
|
|
|
public virtual ICollection<Kontrahent> Kontrahents { get; set; }
|
|
} |