示例#1
0
 public InitializeMetaData(IMoveService moveService, IDashboardService dashboardService, IMaintainService maintainService, IFillService fillService)
 {
     _moveService      = moveService;
     _maintainService  = maintainService;
     _dashboardService = dashboardService;
     _fillService      = fillService;
 }
示例#2
0
        public MorphemeController(
			ISearchService searchService,
			IMaintainService maintainService)
        {
            _searchService = searchService;
            _maintainService = maintainService;
        }
示例#3
0
 public MorphemeController(
     ISearchService searchService,
     IMaintainService maintainService)
 {
     _searchService   = searchService;
     _maintainService = maintainService;
 }
示例#4
0
        public WordController(
			ISearchService searchService,
			IMaintainService maintainService)
        {
            _searchService = searchService;
            _maintainService = maintainService;
        }
示例#5
0
 public WordController(
     ISearchService searchService,
     IMaintainService maintainService)
 {
     _searchService   = searchService;
     _maintainService = maintainService;
 }
示例#6
0
        public LoginViewModel(IAccountService accountService, INavigationService navigationService, IMaintainService maintainService, IPageDialogService dialogService, IGetIconByPlatform getIconByPlatform) : base(navigationService)
        {
            //_navigationService = navigationService ?? throw new ArgumentNullException("navigationService");
            _dialogService     = dialogService;
            _accountService    = accountService;
            _maintainService   = maintainService;
            _getIconByPlatform = getIconByPlatform;

            LoginCommand = new DelegateCommand(LoginCommandRecieverAsync);
            KegIDCommand = new DelegateCommand(KegIDCommandReciever);

            //Username = "******";//"*****@*****.**";
            //Password = "******";

            BgImage = _getIconByPlatform.GetIcon("kegbg.png");
        }
        public MaintainScanViewModel(IMoveService moveService, IMaintainService maintainService, INavigationService navigationService, IGetIconByPlatform getIconByPlatform, IUuidManager uuidManager, IManifestManager manifestManager, IGeolocationService geolocationService) : base(navigationService)
        {
            //_navigationService = navigationService ?? throw new ArgumentNullException("navigationService");

            _moveService        = moveService;
            _maintainService    = maintainService;
            _getIconByPlatform  = getIconByPlatform;
            _uuidManager        = uuidManager;
            _manifestManager    = manifestManager;
            _geolocationService = geolocationService;

            SubmitCommand          = new DelegateCommand(SubmitCommandRecieverAsync);
            BackCommand            = new DelegateCommand(BackCommandRecieverAsync);
            BarcodeScanCommand     = new DelegateCommand(BarcodeScanCommandRecieverAsync);
            BarcodeManualCommand   = new DelegateCommand(BarcodeManualCommandRecieverAsync);
            LabelItemTappedCommand = new DelegateCommand <BarcodeModel>((model) => LabelItemTappedCommandRecieverAsync(model));
            IconItemTappedCommand  = new DelegateCommand <BarcodeModel>((model) => IconItemTappedCommandRecieverAsync(model));
            DeleteItemCommand      = new DelegateCommand <BarcodeModel>((model) => DeleteItemCommandReciever(model));

            LoadMaintenanceType();
            HandleReceivedMessages();
        }