Example #1
0
        public AddStudentForm()
        {
            InitializeComponent();
            managingStudentService = new ManagingStudentService();
            managingSchoolService  = new ManagingSchoolService();

            OnStudentAdded += AddStudentForm_OnStudentAdded;
        }
 public ManagingStudentForm()
 {
     InitializeComponent();
     managingStudentService            = new ManagingStudentService();
     AddStudentForm.OnStudentAdded    += AddStudentForm_OnStudentAdded;
     EditStudentForm.OnStudentUpdated += EditStudentForm_OnStudentUpdated;
     managingSchoolService             = new ManagingSchoolService();
 }
Example #3
0
 public AddCertForm(int blankCertTypeId)
 {
     InitializeComponent();
     managingSchoolService  = new ManagingSchoolService();
     chosenStudents         = new List <StudentModel>();
     managingStudentService = new ManagingStudentService();
     _blankCertTypeId       = blankCertTypeId;
 }
Example #4
0
 public ManagingCertForm()
 {
     InitializeComponent();
     managingCertService      = new ManagingCertService();
     managingStudentService   = new ManagingStudentService();
     managingBlankCertService = new ManagingBlankCertService();
     managingSchoolService    = new ManagingSchoolService();
 }
 public EditStudentForm(int studentId)
 {
     InitializeComponent();
     _studentId             = studentId;
     managingSchoolService  = new ManagingSchoolService();
     managingStudentService = new ManagingStudentService();
     OnStudentUpdated      += EditStudentForm_OnStudentUpdated;
 }
Example #6
0
 public EditCertForm(int certId)
 {
     InitializeComponent();
     _certId                  = certId;
     managingCertService      = new ManagingCertService();
     managingStudentService   = new ManagingStudentService();
     managingSchoolService    = new ManagingSchoolService();
     managingBlankCertService = new ManagingBlankCertService();
 }
Example #7
0
 public PrintRootCertForm()
 {
     InitializeComponent();
     managingCertService      = new ManagingCertService();
     managingStudentService   = new ManagingStudentService();
     managingBlankCertService = new ManagingBlankCertService();
     chosenCertIdList         = new List <int>();
     managingSchoolService    = new ManagingSchoolService();
 }
Example #8
0
 public PrintOptionForm(List <int> certIds)
 {
     InitializeComponent();
     _certIds                       = certIds;
     managingCertService            = new ManagingCertService();
     managingBlankCertConfigService = new ManagingBlankCertConfigService();
     managingBlankCertTypeService   = new ManagingBlankCertTypeService();
     managingStudentService         = new ManagingStudentService();
 }
 public DetailStudentForm(int studentId)
 {
     InitializeComponent();
     _studentId             = studentId;
     managingStudentService = new ManagingStudentService();
 }