Skip to content

Instantly share code, notes, and snippets.

@oinant
Last active August 29, 2015 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oinant/80b675b2ebd202dfd89c to your computer and use it in GitHub Desktop.
Save oinant/80b675b2ebd202dfd89c to your computer and use it in GitHub Desktop.
using ExternalLibrary;
namespace Oinant.Blog.Factory.ForTesting
{
public class NetworkClientWithoutMessageFactory
{
public string SendRequest()
{
var message = new NetworkService().SendMessage();
var networkMessage = new NetworkMessage((Status)message.Item1, message.Item2);
return networkMessage.IsSuccess().ToString() + " " + networkMessage.GetContentAs<string>();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment