46 lines
2.0 KiB
C#
46 lines
2.0 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// Codice generato da un modello.
|
|
//
|
|
// Le modifiche manuali a questo file potrebbero causare un comportamento imprevisto dell'applicazione.
|
|
// Se il codice viene rigenerato, le modifiche manuali al file verranno sovrascritte.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace MedAP_data
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
public partial class Fatture
|
|
{
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
|
public Fatture()
|
|
{
|
|
this.Pagamenti = new HashSet<Pagamenti>();
|
|
this.RigheFatt = new HashSet<RigheFatt>();
|
|
this.Scadenze = new HashSet<Scadenze>();
|
|
}
|
|
|
|
public int IdxFatt { get; set; }
|
|
public int Anno { get; set; }
|
|
public int Num { get; set; }
|
|
public int idxCli { get; set; }
|
|
public string Tipo { get; set; }
|
|
public System.DateTime Data { get; set; }
|
|
public double Ritenuta { get; set; }
|
|
public int Id { get; set; }
|
|
public bool IsTemplate { get; set; }
|
|
public int IdxTemplate { get; set; }
|
|
|
|
public virtual Clienti Clienti { get; set; }
|
|
public virtual CostiAssorbiti CostiAssorbiti { get; set; }
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<Pagamenti> Pagamenti { get; set; }
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<RigheFatt> RigheFatt { get; set; }
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<Scadenze> Scadenze { get; set; }
|
|
}
|
|
}
|