public LoadFeedbacksCommand(FeedbacksViewModel viewModel,
                             IFeedbackService feedbackService,
                             IAuthenticationService authenticationService) : base(viewModel, authenticationService)
 {
     _viewModel       = viewModel;
     _feedbackService = feedbackService;
 }
Exemple #2
0
        public IAsyncCommand GetLoadFeedbacksCommand(FeedbacksViewModel viewModel)
        {
            var feedbackService       = _container.Resolve <IFeedbackService>();
            var authenticationService = _container.Resolve <IAuthenticationService>();

            return(new LoadFeedbacksCommand(viewModel, feedbackService, authenticationService));
        }