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.
41 lines
1.3 KiB
41 lines
1.3 KiB
2 years ago
|
using System.Threading.Tasks;
|
||
|
using Znyc.Recruitment.Admin.Commons.IServices;
|
||
|
using Znyc.Recruitment.Admin.Security.Dtos;
|
||
|
using Znyc.Recruitment.Admin.Security.Entitys;
|
||
|
|
||
|
namespace Znyc.Recruitment.Admin.Security.IServices
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// �Ʊҷ���
|
||
|
/// </summary>
|
||
|
public interface ICurrencyService : IService<CurrencyEntity, CurrencyOutputDto, long>
|
||
|
{
|
||
|
|
||
|
/// <summary>
|
||
|
/// ʵ����֤�ӻ���
|
||
|
/// </summary>
|
||
|
/// <param name="userId"></param>
|
||
|
/// <param name="createdUserId"></param>
|
||
|
/// <returns></returns>
|
||
|
Task<bool> AddCurrencyForRealName(long userId, long createdUserId);
|
||
|
|
||
|
|
||
|
/// <summary>
|
||
|
/// ��ְ�ö����Ʊ�
|
||
|
/// </summary>
|
||
|
/// <param name="userId"></param>
|
||
|
/// <param name="applyJobId"></param>4
|
||
|
/// <param name="createdUserId"></param>
|
||
|
/// <returns></returns>
|
||
|
Task TopReturnForApplyJob(long userId, long applyJobId, long createdUserId);
|
||
|
|
||
|
/// <summary>
|
||
|
/// ��Ƹ�ö����Ʊ�
|
||
|
/// </summary>
|
||
|
/// <param name="userId"></param>
|
||
|
/// <param name="recruitmentId"></param>
|
||
|
/// <param name="createdUserId"></param>
|
||
|
/// <returns></returns>
|
||
|
Task TopReturnForRecruitment(long userId, long recruitmentId, long createdUserId);
|
||
|
}
|
||
|
}
|