public bool SaveConfigFile(IFormFile formFile)
        {
            var memoryStream = new MemoryStream();

            formFile.CopyTo(memoryStream);
            byte[] bytes = memoryStream.ToArray();
            string texto = Encoding.UTF8.GetString(bytes);
            UriStructureGeneral uriStructureGeneral = ReaderConfigJson.Read(texto);

            return(ConfigJsonHandler.IsCorrectFormedUriStructure(uriStructureGeneral));
        }
 public bool SaveConfigJson()
 {
     return(ConfigJsonHandler.IsCorrectFormedUriStructure(_configJsonHandler.GetUrisConfig()));
 }