This commit is contained in:
mmrbnjd
2025-07-29 17:07:37 +03:30
parent cb8e8146b5
commit af37d0b85d
5 changed files with 158 additions and 28 deletions

View File

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