using System.Collections.Generic; using System.Threading.Tasks; using System.Web.Mvc; using WePlatform.BaseSystem.AuditLog.Dto; using IwbZero.AppServiceBase; namespace WePlatform.BaseSystem.AuditLog { public interface IAuditLogsAppService : IIwbZeroAsyncCrudAppService { List GetLogServiceSelectLists(); string GetLogServiceSelectListStrs(); List GetLogMethodSelectLists(QueryMethodName input); string GetLogMethodSelectListStrs(QueryMethodName input); } }