Example #1
0
        public ProjectPageViewModel(INavigationService navigationService, ILautData lautData)
        {
            _navigationService = navigationService;
            _lautData          = lautData;

            Projects = _lautData.GetProjects();

            ItemProjectCommand = new DelegateCommand <Project>(ExecuteItemProjectCommand);
        }