Brewage.Importers.BeerXML10.BeerXML10Importer.Convert C# (CSharp) Method

Convert() public method

public Convert ( string fileContents ) : IEnumerable
fileContents string
return IEnumerable
        public override IEnumerable<Contracts.RECIPE> Convert(string fileContents)
        {
            RECIPES recipes = FileToEntity(fileContents);
            List<Contracts.RECIPE> recipeContracts = RecipeBeerXMLToContract(recipes);
            return recipeContracts;
        }