Skip to content

Instantly share code, notes, and snippets.

@grimley517
Created August 18, 2017 14:52
Show Gist options
  • Save grimley517/fc008867400f09465eea08cc54cf28ca to your computer and use it in GitHub Desktop.
Save grimley517/fc008867400f09465eea08cc54cf28ca to your computer and use it in GitHub Desktop.
namespace Module.Data
{
public class DataFactory
{
private static IData data;
static IData Create(IData datasubstitute = null)
{
if (datasubstitute != null)
{
return datasubstitute;
}
if (data == null)
{
data = new Data();
}
return data;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment