public async Task <IActionResult> DeleteTechnology(int id)
        {
            var app = await _technologyService.DeleteTechnology(id);

            if (app.AppResult.Result == false)
            {
                return(BadRequest(app.AppResult));
            }
            return(Ok(app.AppResult));
        }