public EffortEntry(int year, int month, int day, Purchaser p, PersonalAssistant pa, DateTime from, DateTime to, int km) { this.Year = year; this.Month = month; this.Day = day; this.Purchaser = p; this.Pa = pa; this.From = from; this.To = to; this.Km = km; }
public EffortEntry(int year, int month, int day, Purchaser p, PersonalAssistant pa, DateTime from, DateTime to, int km, Activity a1, Activity a2, Activity a3) { this.Year = year; this.Month = month; this.Day = day; this.Purchaser = p; this.Pa = pa; this.From = from; this.To = to; this.Km = km; this.A1 = a1; this.A2 = a2; this.A3 = a3; }
// file dienstvertrag public EmploymentStatus(PersonalAssistant pa, Purchaser p) { Assistant = pa; Purchaser = p; }