This commit is contained in:
mmrbnjd
2025-07-07 22:04:07 +03:30
parent 2432ab293f
commit 1924c88e7a
8 changed files with 94 additions and 10 deletions

View File

@@ -16,10 +16,17 @@ namespace Hushian.Application.Services
{
public class ExperService
{
private readonly IGenericRepository<Company> _CompanyRepository;
private readonly IGenericRepository<Exper> _ExperRepository;
private readonly VerificationService _VerificationService;
private readonly IMapper _mapper;
public ExperService(IGenericRepository<Exper> experRepository, VerificationService verificationService, IMapper mapper)
{
_ExperRepository = experRepository;
_VerificationService = verificationService;
_mapper = mapper;
}
public async Task<ResponseBase<bool>> ADDExper(ADD_ExperDto dto, int CompanyID)
{
var Response = new ResponseBase<bool>();