25 lines
523 B
C#
25 lines
523 B
C#
namespace DuSoft.PcmDb.Entities;
|
|
|
|
public partial class Odbiorca
|
|
{
|
|
public decimal KontrId { get; set; }
|
|
|
|
public decimal TowId { get; set; }
|
|
|
|
public decimal Zamowil { get; set; }
|
|
|
|
public decimal? RabatTow { get; set; }
|
|
|
|
public decimal? StalaCena { get; set; }
|
|
|
|
public string? Nazwa { get; set; }
|
|
|
|
public string? Indeks { get; set; }
|
|
|
|
public short? NaWylacznosc { get; set; }
|
|
|
|
public virtual Kontrahent Kontr { get; set; } = null!;
|
|
|
|
public virtual Towar Tow { get; set; } = null!;
|
|
}
|