32 lines
852 B
C#
32 lines
852 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace RazorPagesMovie.Models
|
|
{
|
|
public class UZIVATEL
|
|
{
|
|
public int ID { get; set; }
|
|
public string JMENO { get; set; }
|
|
public string PRIJMENI { get; set; }
|
|
public string ULICE { get; set; }
|
|
public string MESTO { get; set; }
|
|
public string PSC { get; set; }
|
|
public string IC { get; set; }
|
|
public string DIC { get; set; }
|
|
public string TELEFON { get; set; }
|
|
public string EMAIL { get; set; }
|
|
public string BANKA { get; set; }
|
|
public string WEB { get; set; }
|
|
|
|
//nastavení:
|
|
public int FAKTURA_SPLATNOST { get; set; }
|
|
public string FAKTURA_MASKA { get; set; }
|
|
public int FAKTURA_CISLOVANI { get; set; }
|
|
|
|
public string PRAJM
|
|
{
|
|
get { return PRIJMENI + " " + JMENO; }
|
|
}
|
|
}
|
|
} |