Beispiel #1
0
 public NecessaryFileService(DelegationExporterDBContext context)
 {
     this.context = context;
 }
 public PdfServce(DelegationExporterDBContext context)
 {
     necessaryFileService = new NecessaryFileService(context);
 }
 public FileController(DelegationExporterDBContext context)
 {
     excelService         = new ExcelService();
     pdfServce            = new PdfServce(context);
     necessaryFileService = new NecessaryFileService(context);
 }