public Perforator(Performance performance) : base(performance)
 {
 }
 public PiopleFactory(Performance performance)
 {
     this.performance      = performance;
     this.time_next_piople = 1;
     this.have_new_piople  = true;
 }
 public Mechanism(Performance performance)
 {
     this.performance = performance;
     this.status      = Status.Free;
     this.task_time   = 0;
 }