Ejemplo n.º 1
0
 //Costruttore del controller dirigenti
 public DirigentiController(GestioneSportivaHome view)
 {
     this.model         = new DirigentiModel();
     this.view          = view;
     this.dirigentiForm = new DirigentiForm();
     //inizializzo gli eventi
     inizializzaEventi();
 }
Ejemplo n.º 2
0
 public MainController()
 {
     this.view = new GestioneSportivaHome();
     this.dirigentiController = new DirigentiController(this.view);
     this.sportiviController  = new SportiviController(this.view);
     this.stampaController    = new StampaController(this.view);
     this.mediciContoller     = new MediciController(this.view);
     this.inizializzaEventi();
 }
        //costruttore
        public StampaController(GestioneSportivaHome view)
        {
            this.model      = new StampaModel();
            this.view       = view;
            this.stampaForm = new StampaForm();

            //Inizializzo gli eventi
            inizializzaEventi();
        }
Ejemplo n.º 4
0
        //costruttore del controller
        public MediciController(GestioneSportivaHome view)
        {
            this.model      = new MediciModel();
            this.view       = view;
            this.mediciForm = new MediciForm();

            //inizializzo gli eventi
            inizializzaEventi();
        }