using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace NCC.VisualDev.Interfaces { /// /// 业务契约:门户设计 /// public interface IPortalService { /// /// 获取默认门户 /// /// Task GetDefault(); } }