using Znyc.CloudCar.Model.Dtos.Certification; using Znyc.CloudCar.Model.ViewModels.ReportsCallBack; namespace Znyc.CloudCar.IServices.Certification { public interface ICertificationService { /// /// 查询实名认证信息 /// /// Task GetAsync(); /// /// 新增实名认证信息 /// /// /// Task AddAsync(CertificationAddInput certificationAddInput); /// /// 更新实名认证信息 /// /// /// Task UpdateAsync(CertificationUpdateInput certificationUpdateInput); } }