public DynamicFileRepository(IFileContextFactory fileContextFactory)
 {
     _fileContextFactory = fileContextFactory;
 }
 protected FileRepository(IFileContextFactory fileContextFactory)
 {
     _fileContext = fileContextFactory.GetFileContext <T>(FileName);
 }
 public PdfFormMapRepository(IFileContextFactory factory) : base(factory)
 {
 }