Add DRS
This commit is contained in:
@@ -1,14 +1,17 @@
|
||||
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
public partial class Akwizytor
|
||||
{
|
||||
public decimal AkwId { get; set; }
|
||||
namespace Blink.Backoffice.Services.PcmDb.Entities;
|
||||
|
||||
public partial class Akwizytor
|
||||
{
|
||||
public decimal AkwId { get; set; }
|
||||
|
||||
public string Nazwisko { get; set; } = null!;
|
||||
public string Nazwisko { get; set; } = null!;
|
||||
|
||||
public string Opis { get; set; } = null!;
|
||||
public string Opis { get; set; } = null!;
|
||||
|
||||
public decimal Prowizja { get; set; }
|
||||
public decimal Prowizja { get; set; }
|
||||
|
||||
public virtual ICollection<Kontrahent> Kontrahent { get; set; } = new List<Kontrahent>();
|
||||
}
|
||||
public virtual ICollection<Kontrahent> Kontrahent { get; set; } = new List<Kontrahent>();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user