Example #1
0
 public ManagingCertForm()
 {
     InitializeComponent();
     managingCertService      = new ManagingCertService();
     managingStudentService   = new ManagingStudentService();
     managingBlankCertService = new ManagingBlankCertService();
     managingSchoolService    = new ManagingSchoolService();
 }
Example #2
0
 public EditCertForm(int certId)
 {
     InitializeComponent();
     _certId                  = certId;
     managingCertService      = new ManagingCertService();
     managingStudentService   = new ManagingStudentService();
     managingSchoolService    = new ManagingSchoolService();
     managingBlankCertService = new ManagingBlankCertService();
 }
Example #3
0
 public PrintRootCertForm()
 {
     InitializeComponent();
     managingCertService      = new ManagingCertService();
     managingStudentService   = new ManagingStudentService();
     managingBlankCertService = new ManagingBlankCertService();
     chosenCertIdList         = new List <int>();
     managingSchoolService    = new ManagingSchoolService();
 }
Example #4
0
 public SelectBlankCertForm(AddCertForm addCertForm, int blankCertTypeId)
 {
     InitializeComponent();
     _addCertForm = addCertForm;
     managingBlankCertService = new ManagingBlankCertService();
     _blankCertTypeId = blankCertTypeId;
     chosenBlankCertModels = new List<BlankCertModel>();
     managingCertService = new ManagingCertService();
 }
Example #5
0
 public PrintOptionForm(List <int> certIds)
 {
     InitializeComponent();
     _certIds                       = certIds;
     managingCertService            = new ManagingCertService();
     managingBlankCertConfigService = new ManagingBlankCertConfigService();
     managingBlankCertTypeService   = new ManagingBlankCertTypeService();
     managingStudentService         = new ManagingStudentService();
 }
Example #6
0
 public ManagingCopyCertForm()
 {
     InitializeComponent();
     managingCopiedCertService = new ManagingCopiedCertService();
     managingCertService       = new ManagingCertService();
 }