Example #1
0
 public PhotoListResponseHandler(
     INetworkCommunication networkCommunication,
     IFileCommunication fileCommunication
     )
 {
     _networkCommunication = networkCommunication;
     _fileCommunication    = fileCommunication;
 }
Example #2
0
 public CreatePhotoRequestHandler(
     INetworkCommunication networkCommunication,
     IFileCommunication fileCommunication
     )
 {
     _networkCommunication = networkCommunication;
     _fileCommunication    = fileCommunication;
 }
Example #3
0
 public MessageCommunication(NetworkStream networkStream)
 {
     _networkCommunication = new NetworkCommunication(networkStream);
     _fileCommunication    = new FileCommunication(networkStream);
 }