public RepositoryFactory(OldFilmContext ofContext,
                                 NewFilmContext nfContext,
                                 FilmPersonContext fpContext,
                                 MediumContext mContext,
                                 PersonContext pContext)
        {
            _oldFilmContext    = ofContext;
            _newFilmContext    = nfContext;
            _filmPersonContext = fpContext;

            _mediumContext = mContext;
            _personContext = pContext;
        }
 public NewFilmPersonRepository(FilmPersonContext context, INewFilmRepository frepo, INewPersonRepository prepo) : base(context, frepo, prepo)
 {
 }