16 lines
371 B
C#
16 lines
371 B
C#
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; }
|
|
} |