public ActionResult <IEnumerable <Tool> > GetAllToolsAvaliable() { var list = _toolRepo.GetAllToolAvailable().ToList(); return(Ok(list)); }