Esempio n. 1
0
 public AuditLogEventSubscriber(
     IAuditLogsService auditLogsService,
     string connectionString,
     string exchangeName,
     string queueName,
     ILogFactory logFactory) : base(connectionString, exchangeName, queueName, logFactory)
 {
     _auditLogsService = auditLogsService;
 }
Esempio n. 2
0
 public AuditLogsController(IAuditLogsService auditLogService)
 {
     _auditLogService = auditLogService;
 }
 public AuditLogsController(IAuditLogsService auditLogsService, IMapper mapper)
 {
     _auditLogsService = auditLogsService;
     _mapper           = mapper;
 }