13 lines
353 B
C#
13 lines
353 B
C#
using IRaCIS.Application.ViewModels;
|
|
using System.Collections.Generic;
|
|
using IRaCIS.Core.Application.Contracts.RequestAndResponse;
|
|
|
|
namespace IRaCIS.Application.Interfaces
|
|
{
|
|
public interface ILogService
|
|
{
|
|
IResponseOutput SaveLog2Db(SystemLogDTO viewModel);
|
|
PageOutput<SystemLogDTO> GetLogList(QueryLogQueryDTO param);
|
|
}
|
|
}
|