18 lines
456 B
C#
18 lines
456 B
C#
using New_College.IServices.BASE;
|
|
using New_College.Model.Models;
|
|
using New_College.Model.ViewModels;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace New_College.IServices
|
|
{
|
|
/// <summary>
|
|
/// ISysRegionServices
|
|
/// </summary>
|
|
public interface ISysRegionServices :IBaseServices<SysRegion>
|
|
{
|
|
Task<List<SysRegion>> GetListByParentId(string id);
|
|
|
|
Task<List<SysRegionResult>> GetRegionList(SysRegionQuery query);
|
|
}
|
|
} |