Files
cs-oo-project/Online Gokkantoor/LogicLayer/Persoon.cs
Michiel.VanDorpe 60eb72bd30 voila
2019-03-13 16:37:03 +01:00

42 lines
1012 B
C#

using DataLaag.Interfaces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LogicLayer
{
public class Persoon : IFPersoon
{
public int persoon_ID { get; set; }
public string voorNaam { get; set; }
public string naam { get; set; }
public string adres { get; set; }
public string gsm { get; set; }
public double balans { get; set; }
public Persoon(int persoon_ID, string voorNaam, string naam, string adres, string gsm, double balans)
{
try
{
this.persoon_ID = persoon_ID;
this.voorNaam = voorNaam;
this.naam = naam;
this.adres = adres;
this.gsm = gsm;
this.balans = balans;
}
catch (Exception ex)
{
throw new Exception("Foutieve ingave: " + ex);
}
}
}
}