22 lines
678 B
C#
22 lines
678 B
C#
namespace Pcm.Db.Entities;
|
|
|
|
public class Ph
|
|
{
|
|
public Ph()
|
|
{
|
|
Phdanes = new HashSet<Phdane>();
|
|
Phodbiorcas = new HashSet<Phodbiorca>();
|
|
Phrozliczenies = new HashSet<Phrozliczenie>();
|
|
}
|
|
|
|
public decimal Phid { get; set; }
|
|
public decimal? KontrId { get; set; }
|
|
public string Nazwa { get; set; }
|
|
public short Aktywny { get; set; }
|
|
public DateTime Zmiana { get; set; }
|
|
|
|
public virtual Kontrahent Kontr { get; set; }
|
|
public virtual ICollection<Phdane> Phdanes { get; set; }
|
|
public virtual ICollection<Phodbiorca> Phodbiorcas { get; set; }
|
|
public virtual ICollection<Phrozliczenie> Phrozliczenies { get; set; }
|
|
} |