Created
July 22, 2015 17:31
-
-
Save oinant/f6c49cf22182f062b198 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using ExternalLibrary; | |
namespace Oinant.Blog.Factory.ForTesting | |
{ | |
public class NetworkClientWithMessageFactory | |
{ | |
private readonly INetworkMessageFactory _networkMessageFactory; | |
public NetworkClientWithMessageFactory(INetworkMessageFactory networkMessageFactory) | |
{ | |
_networkMessageFactory = networkMessageFactory; | |
} | |
public string SendRequest() | |
{ | |
var message = new NetworkService().SendMessage(); | |
var networkMessage = _networkMessageFactory.Create((Status)message.Item1, message.Item2); | |
return networkMessage.IsSuccess().ToString() + " " + networkMessage.GetContentAs<string>(); | |
} | |
} | |
public interface INetworkMessageFactory | |
{ | |
NetworkMessage Create(Status status, object content); | |
} | |
public class ConcreteNetworkMessageFactory : INetworkMessageFactory | |
{ | |
public NetworkMessage Create(Status status, object content) | |
{ | |
return new NetworkMessage(status, content); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment