示例#1
0
 public PhysicalDocumentsController(
     ILogger <PhysicalDocumentsController> logger,
     IPhysicalDocumentGenerationService physicalDocumentGenerationService,
     IDocumentRepository documentRepository,
     IIdentityService identityService,
     IPhysicalDocumentStorageService physicalDocumentStorageService,
     IMapper mapper,
     ISystemDateTimeService systemDateTimeService,
     IDocumentQueries documentQueries,
     IApplicationTableService applicationTableQueries,
     IMediator mediator,
     ITagServiceForContractAdvice tagService)
 {
     _logger = logger;
     _physicalDocumentGenerationService = physicalDocumentGenerationService;
     _documentRepository             = documentRepository;
     _identityService                = identityService;
     _physicalDocumentStorageService = physicalDocumentStorageService;
     _mapper = mapper;
     _systemDateTimeService   = systemDateTimeService;
     _documentQueries         = documentQueries;
     _applicationTableQueries = applicationTableQueries;
     _mediator   = mediator;
     _tagService = tagService;
 }
示例#2
0
 public DocumentCommandHandlers(
     IPhysicalDocumentGenerationService physicalDocumentGenerationService,
     IPhysicalDocumentStorageService physicalDocumentStorageService,
     IIdentityService identityService,
     ISystemDateTimeService systemDateTimeService,
     IDocumentRepository documentRepository,
     ILogger <DocumentCommandHandlers> logger,
     IAuthorizationService authorizationService,
     IMapper mapper)
 {
     _physicalDocumentGenerationService = physicalDocumentGenerationService;
     _physicalDocumentStorageService    = physicalDocumentStorageService;
     _identityService       = identityService;
     _systemDateTimeService = systemDateTimeService;
     _documentRepository    = documentRepository;
     _logger = logger;
     _authorizationService = authorizationService;
     _mapper = mapper;
 }