public ActionResult <string> Get()
        {
            string text = "Google Home enables users to speak voice commands to interact with services through the Home's intelligent personal assistant called Google Assistant. A large number of services, both in-house and third-party, are integrated, allowing users to listen to music, look at videos or photos, or receive news updates entirely by voice.";

            return(processor.Get(text));
        }
        public ActionResult Edit(int id)
        {
            CategoryVM model = categoryProcessor.Get(id).DTOToViewModel(MapCategory);

            return(View(model));
        }