コード例 #1
0
 public MessageService(IStorageService storageService, IQryptoWireServiceClient client, IEncryptionService encryptionService)
 {
     _storageService = storageService;
     _client = client;
     _encryptionService = encryptionService;
 }
コード例 #2
0
 public MessageService(IStorageService storageService, IQryptoWireServiceClient client, IEncryptionService encryptionService)
 {
     _storageService    = storageService;
     _client            = client;
     _encryptionService = encryptionService;
 }
コード例 #3
0
ファイル: UserService.cs プロジェクト: QRyptoWire/qrypto-wire
 public UserService(IQryptoWireServiceClient serviceClient, IStorageService storageService)
 {
     _serviceClient = serviceClient;
     _storageService = storageService;
 }
コード例 #4
0
 public PhoneService(IQryptoWireServiceClient serviceClient, IMvxMessenger messenger, IMessageService messageService)
 {
     _serviceClient  = serviceClient;
     _messenger      = messenger;
     _messageService = messageService;
 }
コード例 #5
0
ファイル: UserService.cs プロジェクト: QRyptoWire/qrypto-wire
 public UserService(IQryptoWireServiceClient serviceClient, IStorageService storageService)
 {
     _serviceClient  = serviceClient;
     _storageService = storageService;
 }
コード例 #6
0
		public PhoneService(IQryptoWireServiceClient serviceClient, IMvxMessenger messenger, IMessageService messageService)
		{
			_serviceClient = serviceClient;
			_messenger = messenger;
			_messageService = messageService;
		}