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