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