public SubdomainVersionManager(ISubdomainUnitOfWork subdomainUnitOfWork, IDrcUnitOfWork drcUnitOfWork, IMapper mapper, IDrcCardService drcCardService) { _subdomainUnitOfWork = subdomainUnitOfWork; _drcUnitOfWork = drcUnitOfWork; _mapper = mapper; _drcCardService = drcCardService; }
public ExportManager(IDrcUnitOfWork drcUnitOfWork, IConfiguration configuration, IMapper mapper, IHostingEnvironment env) { _documentGenerator = new RoslynDocumentCodeGenerator(); _drcUnitOfWork = drcUnitOfWork; _configuration = configuration; _mapper = mapper; _env = env; }
public DrcCardManager(IMapper mapper, IDrcUnitOfWork drcUnitOfWork) { _drcUnitOfWork = drcUnitOfWork; _mapper = mapper; }
public FieldManager(IDrcUnitOfWork drcUnitOfWork, IMapper mapper) { _drcUnitOfWork = drcUnitOfWork; _mapper = mapper; }
public DrcCardMoveManager(IMapper mapper, IDrcUnitOfWork drcUnitOfWork, IDocumentTransferUnitOfWork documentTransferUnitOfWork) { _documentTransferUnitOfWork = documentTransferUnitOfWork; _mapper = mapper; }
public ResponsibilityManager(IDrcUnitOfWork drcUnitOfWork, IMapper mapper) { _drcUnitOfWork = drcUnitOfWork; _mapper = mapper; }
public ResponsibilitiesController(IResponsibilityService responsibilityService, IDrcUnitOfWork drcUnitOfWork, IMapper mapper) { _mapper = mapper; _responsibilityService = responsibilityService; }