using System.Collections.Generic;
|
using System.Threading.Tasks;
|
using Volo.Abp.Application.Services;
|
|
namespace LifePayment.Application.Contracts
|
{
|
public interface IAreaService : IApplicationService
|
{
|
Task<List<AreaDto>> GetAreaList(GetAreaListInput input);
|
|
Task<List<AreaInfo>> GetRegionalManagementList();
|
}
|
}
|