Example #1
0
        private void SpecialityTile_Click(object sender, EventArgs e)
        {
            GwinManagerControl <Specialty, SpecialtyForm, SpecialtyDataGrid>
            managerForm = new GwinManagerControl <Specialty, SpecialtyForm, SpecialtyDataGrid>(new SpecialtyBLO());

            new ShowFormManager(this).ShwoForm(managerForm, "Gestion des spécialité");
        }
Example #2
0
        private void TasksTile_Click(object sender, EventArgs e)
        {
            GwinManagerControl <Entities.Task, TaskForm, TaskDataGrid>
            managerForm = new
                          GwinManagerControl <Entities.Task, TaskForm, TaskDataGrid>
                              (new TaskBLO(ModelContext.getContext(nameof(Entities.Task))));

            new ShowFormManager(this).ShwoForm(managerForm, "Gestion des tâches", FormWindowState.Maximized);
        }
Example #3
0
        private void ProjectsTile_Click(object sender, EventArgs e)
        {
            GwinManagerControl <Project, ProjectForm, ProjectDataGrid>
            managerForm = new
                          GwinManagerControl <Project, ProjectForm, ProjectDataGrid>
                              (new ProjectBLO());

            new ShowFormManager(this).ShwoForm(managerForm, "Gestion des projets", FormWindowState.Maximized);
        }
Example #4
0
        private void GroupesTile_Click(object sender, EventArgs e)
        {
            GwinManagerControl <Group, GroupForm, GroupDataGrid>
            managerForm = new GwinManagerControl <Group, GroupForm, GroupDataGrid>(
                new GroupBLO(ModelContext.getContext(nameof(Group)))
                );

            new ShowFormManager(this).ShwoForm(managerForm, "Gestion des groupes", FormWindowState.Maximized);
        }