Ejemplo n.º 1
0
        public MainViewModel(IAuthenticationService authenticationService, INavigationService navigationService, VideosRepository videosRepository)
        {
            _authenticationService = authenticationService;
            _navigationService = navigationService;
            _videosRepository = videosRepository;

            Items = new BindableCollection<ItemsGroup>();

            Load();
        }
Ejemplo n.º 2
0
 public GroupViewModel(VideosRepository repository)
 {
     _repository = repository;
 }