public async Task <ActionResult <DepartmentDesignationDto> > GetAllDesignationsNotMappedWithLevelAsync(int departmentId)
        {
            var result = await _levelService.GetAllDesignationsNotMappedWithLevelAsync(departmentId);

            return(Ok(result));
        }