diff --git a/FileRepository/Factory.cs b/FileRepository/Factory.cs index 09fea37..6a47560 100644 --- a/FileRepository/Factory.cs +++ b/FileRepository/Factory.cs @@ -39,5 +39,19 @@ namespace FileRepository /// Sql, } + + /// + /// Initialise an implementation of IFileRepository based on a selected enum member. + /// + /// The type of repository to initialise, based on the enum member. + /// Returns an initialised repository. + public IFileRepository GetFileRepository(RepositoryType repositoryType) + { + throw new NotImplementedException("This section won't work until another method is set up with at least one repository type."); + + //IFileRepository fileRepository = // Here we need to get the specific class of repository based on the RepositoryType enum. + + //return fileRepository; + } } }