public ActionResult <string> Get(int id) { var model = typeRepository.FindByID(id); return(Ok(model)); }