using Myshipping.Application.Service.MonthlyPayAccount.Dto; using System.Collections.Generic; using System.Threading.Tasks; namespace Myshipping.Application { public interface IMonthlyPayAccountService { Task Delete(long id); Task> List(); Task SaveOrUpdate(MonthlyPayAccountDto input); } }