public AuditLogsService(
     IAuditLogsRepository auditLogsRepository,
     IAuditLogTypesRepository auditLogTypesRepository
     )
 {
     _auditLogsRepository     = auditLogsRepository;
     _auditLogTypesRepository = auditLogTypesRepository;
     _diffPatch = new JsonDiffPatch();
 }
Exemplo n.º 2
0
 public AuditLogsService(IAuditLogsRepository auditLogRepository)
 {
     _auditLogRepository = auditLogRepository;
 }
Exemplo n.º 3
0
 public AuditLogsService(IAuditLogsRepository repository)
 {
     _repository = repository;
 }
Exemplo n.º 4
0
 public AuditService(IAuditLogsRepository auditLogsRepository, IUserProfileService userProfileService)
 {
     _auditLogsRepository = auditLogsRepository;
     _userProfileService  = userProfileService;
 }
 public AuditLogsService(IAuditLogsRepository auditLogsRepository, ILogFactory logFactory)
 {
     _auditLogsRepository = auditLogsRepository;
     _log = logFactory.CreateLog(this);
 }