using PMS.EntityModels.ExternalManage;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PMS.Interface.ExternalManage
{
public interface IExternalView
{
ExternalAccredit GetAccredit(string id);
ExternalValidate GetAccreditByUrl(string id, string projectId);
ExternalValidate ApplyVerifyCode(ExternalValidate model);
ExternalValidate VerifyCode(ExternalValidate model);
///
/// 关键字查询外部服务分类
///
/// 关键字
///
string GetExternalClass(string keyword,List classIds, string id, int type);
///
/// 获取服务列表
///
/// 分类id
/// 关键字
///
string GetExternalView(string class_id, string keyword);
///
/// 获取全部渠道信息
///
///
string Datagrid();
bool AddAccessRecords(ExternalRecords model);
}
}