public IActionResult GetSoftwareAppsFromCategoryID(int SelectedCategoryId)
        {
            //Retrive the Other Catogary equal "1"
            var SoftwareApps = _serviceManager.RetreiveSoftwareApps(1);

            return(Ok(SoftwareApps));
        }