Exemplo n.º 1
0
 // Constructor, parameters are provided by service provider
 public ApiController(IIndexService indexService, INodesService nodesService, IGraphService graphService, ITpsService tpsService)
 {
     _indexService = indexService;
     _nodesService = nodesService;
     _graphService = graphService;
     _tpsService   = tpsService;
 }
Exemplo n.º 2
0
 public CardTenderViewModel(IMvxNavigationService navigationService,
                            IMvxLog log,
                            ITpsService tpsService,
                            IFcsService fcsService,
                            IAppSettings appSettings,
                            PosManager posManager,
                            IReceiptGenerator receiptGenerator)
 {
     this.navigationService = navigationService;
     this.log              = log;
     this.tpsService       = tpsService;
     this.fcsService       = fcsService;
     this.posManager       = posManager;
     this.appSettings      = appSettings;
     this.receiptGenerator = receiptGenerator;
 }
Exemplo n.º 3
0
 public ApiServiceController(ITpsService tpsService, INodesService nodesService, IGraphService graphService)
 {
     _tpsService   = tpsService;
     _nodesService = nodesService;
     _graphService = graphService;
 }