protected override void Context()
        {
            base.Context();
            _speciesMap1 = new SpeciesDatabaseMap {
                Species = "Dog", DatabaseFullPath = "Path1"
            };
            _speciesMap2 = new SpeciesDatabaseMap {
                Species = "Human", DatabaseFullPath = "Path2"
            };
            _applicationSettings.AddSpeciesDatabaseMap(_speciesMap1);
            _applicationSettings.AddSpeciesDatabaseMap(_speciesMap2);

            A.CallTo(() => _view.BindTo(A <IEnumerable <SpeciesDatabaseMapDTO> > ._))
            .Invokes(x => _allSpeciesDatabaseMapDTOs = x.GetArgument <IEnumerable <SpeciesDatabaseMapDTO> >(0));
            _applicationSettings.UseWatermark        = null;
        }