Exemple #1
0
 private void AddToPrint()
 {
     CertificationLevelPrintModel model = new CertificationLevelPrintModel
     {
         Copies    = _copies,
         LvlWeight = _lvlWeight
     };
     CertificationLvlLablePrint certificationLvlLablePrint = new CertificationLvlLablePrint(model);
 }
Exemple #2
0
 public CertificationLvlLablePrint(CertificationLevelPrintModel model)
 {
     this.PaperSize = (Dictionary <string, PaperSizeModel>)SettingFromString(PrinterSettingsModel.PaperSize);
     this.model     = model;
     InitialSettingsAndPrint();
 }