public async Task <IActionResult> GetAllTechnology(int?page, int?limit, string search, int?category)
        {
            var technologies = await _technologyService.GetAllTechnology(page, limit, search, category);

            return(Ok(technologies));
        }