You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
890 B
28 lines
890 B
using Znyc.CloudCar.Model.Dtos.Certification;
|
|
using Znyc.CloudCar.Model.ViewModels.ReportsCallBack;
|
|
|
|
namespace Znyc.CloudCar.IServices.Certification
|
|
{
|
|
public interface ICertificationService
|
|
{
|
|
/// <summary>
|
|
/// 查询实名认证信息
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
Task<ResponseOutput> GetAsync();
|
|
|
|
/// <summary>
|
|
/// 新增实名认证信息
|
|
/// </summary>
|
|
/// <param name="certificationAddInput"></param>
|
|
/// <returns></returns>
|
|
Task<ResponseOutput> AddAsync(CertificationAddInput certificationAddInput);
|
|
|
|
/// <summary>
|
|
/// 更新实名认证信息
|
|
/// </summary>
|
|
/// <param name="certificationUpdateInput"></param>
|
|
/// <returns></returns>
|
|
Task<ResponseOutput> UpdateAsync(CertificationUpdateInput certificationUpdateInput);
|
|
}
|
|
}
|
|
|