using System.Threading.Tasks;
using Znyc.Recruitment.Admin.Commons.IRepositories;
using Znyc.Recruitment.Admin.Security.Entitys;
namespace Znyc.Recruitment.Admin.Security.IRepositories
{
///
///
public interface ICallFeedbackRepository : IRepository
{
///
/// 根据ProductId修改通话评价反馈是否已读
///
///
///
Task UpdateIsReadAsync(long userId, long productId, int productType);
}
}