28 lines
591 B
C#
28 lines
591 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Blink.Backoffice.Services.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!;
|
|
}
|