Exemple #1
0
 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;
 }
Exemple #2
0
 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;
 }
Exemple #3
0
        // file dienstvertrag

        public EmploymentStatus(PersonalAssistant pa, Purchaser p)
        {
            Assistant = pa;
            Purchaser = p;
        }