public Response FindByName(string name)
        {
            Response response = new Response();

            try
            {
                response.Text   = "The name you are looking for has been found :" + Environment.NewLine + JsonConverter.JsonConverter.ObjToJson(Processor.FindByName(name));
                response.Result = true;
            }
            catch
            {
                response.Text   = $"The name you are looking for ({name}) does not exist in the system.";
                response.Result = false;
            }
            return(response);
        }