public RateUserViewModel(IMvxNavigationService navigationService, IProfileCommentService profileCommentService, IToastSerivce toastSerivce)
 {
     _navigationService     = navigationService;
     _profileCommentService = profileCommentService;
     _toastSerivce          = toastSerivce;
     CommentForProfile      = new BaseProfileCommentViewModel
     {
         UserCommentator = Settings.ApplicationData.CurrentUserViewModel,
         Grade           = 5
     };
 }
Exemplo n.º 2
0
 public ProfileCommentController(IProfileCommentService commentForProfileService)
 {
     _commentForProfileService = commentForProfileService;
 }
Exemplo n.º 3
0
 public UserCommentsViewModel(IMvxNavigationService navigationService, IProfileCommentService profileCommentService)
 {
     _navigationService     = navigationService;
     _profileCommentService = profileCommentService;
 }