Example #1
0
 public Werknemer(Persoon employee, int anciënniteit, Prestaties prestatie)
 {
     this.Employee     = employee;
     this.Anciënniteit = anciënniteit;
     this.Prestatie    = prestatie;
     employeeNumber   += employeeNumber + 1;
     TotalSalary       = CalculateSalary();
 }
Example #2
0
 private IEnumerable <Prestatie> GetOpenstaandePrestaties()
 {
     return(Prestaties.Where(p => !p.Betaald));
 }
Example #3
0
 public Prestatie GetPrestatie(int index)
 {
     return(Prestaties.ToList()[index]);
 }