public OnlineBestelLijn(long BestellingId, KlantLogin klantLogin, Klant klant, Product product, int aantal, decimal prijs, decimal btwPerc, DateTime datumInbreng, long hoofdProdBestelLijnId) { this.KlantLogin = klantLogin; this.Klant = klant; this.Product = product; this.Aantal = aantal; this.Prijs = prijs; this.BtwPerc = btwPerc; this.DatumInbreng = datumInbreng; this.HoofdProdBestelLijnId = hoofdProdBestelLijnId; }
public OnlineBestelling(Klant klant, Klant leverklant, string referentie, string opmerking, Transport transport, KlantLogin klantLogin, List <OnlineBestelLijn> onlineBestellijnen) { this.Datum = DateTime.Today; this.Klant = klant; this.LeverKlant = leverklant; this.Referentie = referentie; this.Opmerking = opmerking; this.Transport = transport; this.DatumInBreng = DateTime.Now; this.KlantLogin = klantLogin; this.OnlineBesltelLijnen = onlineBestellijnen; }