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

            return(Ok(result));
        }