Пример #1
0
 public NoteSynchronizationHandler(
     INoteMeClientMapper mapper,
     ApiWebService webService)
 {
     _mapper     = mapper;
     _webService = webService;
 }
Пример #2
0
 public NoteQueryHandler(
     INoteMeClientMapper mapper,
     INoteMeContextFactory factory)
 {
     _mapper  = mapper;
     _factory = factory;
 }
Пример #3
0
 public AttachmentSynchronizationHandler(
     IFilePathService filePathService,
     ApiWebService apiWebService,
     INoteMeClientMapper mapper)
 {
     _filePathService = filePathService;
     _apiWebService   = apiWebService;
     _mapper          = mapper;
 }
 public UserCommandHandler(
     INoteMeClientMapper mapper,
     ApiWebSettings apiWebSettings,
     ApiWebService apiWebService)
 {
     _mapper         = mapper;
     _apiWebSettings = apiWebSettings;
     _apiWebService  = apiWebService;
 }
 public NoteHandler(
     IGeolocationService geolocationService,
     INoteMeClientMapper mapper,
     INoteMeContextFactory factory)
 {
     _geolocationService = geolocationService;
     _mapper             = mapper;
     _factory            = factory;
 }
 public ViewModelFacade(ITranslationService translationService, IValidationDispatcher validationDispatcher, INavigationService navigationService, ICommandDispatcher commandDispatcher, INoteMeClientMapper mapper, IQueryDispatcher queryDispatcher, IDialogService dialogService)
 {
     TranslationService   = translationService;
     ValidationDispatcher = validationDispatcher;
     NavigationService    = navigationService;
     CommandDispatcher    = commandDispatcher;
     Mapper          = mapper;
     QueryDispatcher = queryDispatcher;
     DialogService   = dialogService;
 }