22 lines
		
	
	
		
			540 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			540 B
		
	
	
	
		
			C#
		
	
	
| using System;
 | |
| using IRaCIS.Application.Contracts;
 | |
| using System.Collections.Generic;
 | |
| using IRaCIS.Core.Infrastructure.Extention;
 | |
| 
 | |
| namespace IRaCIS.Application.Interfaces
 | |
| {
 | |
|     public interface ILogService
 | |
|     {
 | |
|         IResponseOutput SaveLog2Db(SystemLogDTO viewModel);
 | |
|         PageOutput<SystemLogDTO> GetLogList(QueryLogQueryDTO param);
 | |
| 
 | |
|         PageOutput<AuditDTO> GetAuditList(AuditQueryDTO param);
 | |
| 
 | |
|         List<OptUserDto> GetOptUserList(Guid trialId);
 | |
| 
 | |
|         List<AuditSubjectSelectDto> GetSubjectList(Guid trialId);
 | |
| 
 | |
| 
 | |
|     }
 | |
| }
 |