using System.Collections.Generic; using System.Threading.Tasks; using System.Web.Mvc; using ShwasherSys.BaseSysInfo.AuditLog.Dto; using IwbZero.AppServiceBase; namespace ShwasherSys.BaseSysInfo.AuditLog { public interface IAuditLogsAppService : IIwbAsyncCrudAppService { Task> GetLogServiceSelectLists(); Task GetLogServiceSelectListStrs(); Task> GetLogMethodSelectLists(QueryMethodName input); Task GetLogMethodSelectListStrs(QueryMethodName input); } }