using Tiobon.Core.Common;
using Tiobon.Core.IServices.BASE;
using Tiobon.Core.Model;
using Tiobon.Core.Model.Models;
namespace Tiobon.Core.IServices;
///
/// IReportServices
///
public interface IReportServices : IBaseServices
{
Task> QueryNewStaffAsync(QueryBody filter, string condition, bool? IsEnable = true);
Task> QueryESSResumeScreenPassRate(int langId = 1);
Task> QueryInterviewPassRate(int langId = 1, int? staffId = null);
Task> QuerySendOfferRate(int langId = 1, int? staffId = null);
}