예제 #1
0
        public AddEditProfileViewModel(INavigationService navigationService, ProfileAsyncRepository profileRepository, UserAsyncRepository userRepository)
        {
            _navigationService = navigationService;
            _profileRepository = profileRepository;
            _userRepository    = userRepository;

            Saved            = false;
            FirstOnAppearing = true;
            ImagePath        = "profile.png";
        }
예제 #2
0
 public MainListViewModel(INavigationService navigationService, ProfileAsyncRepository profileRepository, UserAsyncRepository userRepository)
 {
     _navigationService = navigationService;
     _profileRepository = profileRepository;
     _userRepository    = userRepository;
 }