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

@@ -20,6 +20,17 @@ namespace Hushian.Application.Services
private readonly IGenericRepository<ExperGroup> _EGRepository;
private readonly IMapper _mapper;
private readonly ExperService _experService;
public GroupService(IGenericRepository<Group> groupRepository
, IGenericRepository<ExperGroup> eGRepository
, IMapper mapper, ExperService experService)
{
_GroupRepository = groupRepository;
_EGRepository = eGRepository;
_mapper = mapper;
_experService = experService;
}
public async Task<ResponseBase<bool>> NewGroup(ADD_GroupDto model, int CompanyID)
{
ResponseBase<bool> Response = new();