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 GetLogList(QueryLogQueryDTO param); } }