FakturyWeb/Models/Polozka.cs

19 lines
518 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace RazorPagesMovie.Models
{
public class POLOZKA
{
public int ID { get; set; }
public string NAZEV { get; set; }
public float POCET { get; set; }
[Column(TypeName = "money")]
public decimal CENA_JEDNOTKA { get; set; }
public float SLEVA { get; set; }
[Column(TypeName = "money")]
public decimal CENA { get; set; }
public string JEDNOTKA { get; set; }
}
}