예제 #1
0
 public GenerateDocument(IOptions <AttachmentConfig> attachmentConfig, IImportPermitService importPermitService,
                         IDocumentService documentService, IService <LetterHeading> letterHeadingService,
                         IService <Letter> letterService, IIpermitLogStatusService statusService, IService <ModuleDocument> moduleDocumentService,
                         PDX.Logging.ILogger logger, IMAService maService, IChecklistService checklistService,
                         IMALogStatusService maStatusService, IService <AgentSupplier> agentSupplierService, IReportService reportService)
 {
     _attachmentConfig      = attachmentConfig.Value;
     _rootUrl               = _attachmentConfig.RootUrl;
     _service               = importPermitService;
     _documentService       = documentService;
     _letterHeadingService  = letterHeadingService;
     _letterService         = letterService;
     _statusService         = statusService;
     _moduleDocumentService = moduleDocumentService;
     _logger               = logger;
     _maService            = maService;
     _checklistService     = checklistService;
     _maStatusService      = maStatusService;
     _agentSupplierService = agentSupplierService;
     _reportService        = reportService;
 }
예제 #2
0
 public MALogStatusController(IMALogStatusService maLogStatusService) : base(maLogStatusService)
 {
     _maLogStatusService = maLogStatusService;
 }