public KitchenController(Model model)
 {
     this.model              = model;
     sectionChefController   = new SectionChefController(model);
     masterChefController    = new MasterChefController(model, sectionChefController);
     cleanningRoomController = new CleanningRoomController();
 }
 public MasterChefController(Model model, SectionChefController sectionChefController)
 {
     this.model = model;
     this.sectionChefController = sectionChefController;
     CreateThread();
 }