Class BonRegel

PHOTO EMBED

Tue Sep 29 2020 14:38:01 GMT+0000 (Coordinated Universal Time)

Saved by @JOMOGO

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;

namespace GoodTimes.Models
{
    public class BonRegel
    {
        public int Id { get; set; }
        public DateTime Tijd { get; set; }

        [DataType(DataType.MultilineText)]
        public string Omschrijving { get; set; }
        public int Aantal { get; set; }
        public double Prijs { get; set; }
        public double Btw { get; set; }
        public double Subtotaal { get; set; }

        public int BonId { get; set; }
        public Bon Bon { get; set; }

        public int BestellingId { get; set; }
        public Bestelling Bestelling { get; set; }
    }
}
content_copyCOPY