Exemplo n.º 1
0
        public PresenterLocations(IViewLocations inView)
        {
            _view = inView;

            // load locations
            LocationRepository repository = LocationRepository.GetInstance();

            ShowLocations(repository.GetLocations());

            // attach self to repository
            repository.Attach(this);
        }