public ActionResult GetTools()
 {
     System.Threading.Thread.Sleep(2000);
     var toolsService = new UserToolService();
     var tools = toolsService.GetAll();
     ViewBag.Tools = tools;
     return PartialView();
 }
        public ActionResult GetTools()
        {
            System.Threading.Thread.Sleep(2000);
            var toolsService = new UserToolService();
            var tools        = toolsService.GetAll();

            ViewBag.Tools = tools;
            return(PartialView());
        }
 public ActionResult All()
 {
     ViewBag.UserTools = service.GetAll();
     return(View());
 }