Beispiel #1
0
 public CaseSessionFastDocumentController(ICaseSessionFastDocumentService _service,
                                          INomenclatureService _nomService,
                                          ICommonService _commonService,
                                          ICasePersonService _casePerson,
                                          ICaseSessionService _caseSessionService)
 {
     service            = _service;
     nomService         = _nomService;
     commonService      = _commonService;
     casePersonService  = _casePerson;
     caseSessionService = _caseSessionService;
 }
Beispiel #2
0
 public FilesController(
     ICdnService _cdnService,
     IMQEpepService _epepService,
     ICaseSessionActService _actService,
     ICaseSessionActCoordinationService _coordinationService,
     ICaseSessionFastDocumentService _caseSessionFastDocumentService,
     IDocumentService _documentService,
     IDocumentTemplateService _documentTemplateService,
     IConfiguration _config,
     ILogger <FilesController> _logger)
 {
     cdnService                     = _cdnService;
     epepService                    = _epepService;
     actService                     = _actService;
     coordinationService            = _coordinationService;
     caseSessionFastDocumentService = _caseSessionFastDocumentService;
     documentService                = _documentService;
     documentTemplateService        = _documentTemplateService;
     config = _config;
     logger = _logger;
 }